From 763406e294c81bfd76a16cb0bba1f7110f209646 Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Thu, 4 Jun 1992 15:55:24 +0000
Subject: [PATCH] Don't destructively modify the breakpoint list in
 SUB-ACTIVATE-BREAKPOINT so that any breakpoints activated while we are
 already at this location will not be processed this time around.

---
 code/debug-int.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/code/debug-int.lisp b/code/debug-int.lisp
index 8b9fe5bfa..2f85f7075 100644
--- a/code/debug-int.lisp
+++ b/code/debug-int.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/debug-int.lisp,v 1.47 1992/05/26 11:18:37 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/debug-int.lisp,v 1.48 1992/06/04 15:55:24 ram Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -3118,7 +3118,7 @@
 				 (breakpoint-data-component data))
 				(breakpoint-data-offset data)))))
    (setf (breakpoint-data-breakpoints data)
-	 (nconc (breakpoint-data-breakpoints data) (list breakpoint)))
+	 (append (breakpoint-data-breakpoints data) (list breakpoint)))
    (setf (breakpoint-internal-data breakpoint) data)))
 
 ;;;
-- 
GitLab