From e22cd8af07ac41cd82f2c03e9c36fcf4303c1aa8 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Fri, 4 Feb 1994 15:22:10 +0000
Subject: [PATCH] Changed step to set-step-breakpoint because step is supposed
 to be the exported step macro, not some internal routine.

---
 code/debug.lisp | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/code/debug.lisp b/code/debug.lisp
index c4a56abd9..11899849f 100644
--- a/code/debug.lisp
+++ b/code/debug.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.lisp,v 1.38 1993/08/30 21:58:46 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/debug.lisp,v 1.39 1994/02/04 15:22:10 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -419,13 +419,13 @@ See the CMU Common Lisp User's Manual for more information.
 	     (print-common-info)
 	     (format t "~A" string)
 	     (decf *number-of-steps*)
-	     (step current-frame))
+	     (set-step-breakpoint current-frame))
 	    ((and step-hit-info (= 1 *number-of-steps*))
 	     (build-string "*Step*")
 	     (break (make-condition 'step-condition :format-control string)))
 	    (step-hit-info
 	     (decf *number-of-steps*)
-	     (step current-frame))
+	     (set-step-breakpoint current-frame))
 	    (bp-hit-info
 	     (when break
 	       (build-string (format nil "~&*Breakpoint hit*")))
@@ -443,7 +443,7 @@ See the CMU Common Lisp User's Manual for more information.
 ;;; Sets breakpoints at the next possible code-locations.  After calling
 ;;; this either (continue) if in the debugger or just let program flow
 ;;; return if in a hook function.
-(defun step (frame)
+(defun set-step-breakpoint (frame)
   (cond
    ((di:debug-block-elsewhere-p (di:code-location-debug-block
 				 (di:frame-code-location frame)))
@@ -1361,7 +1361,7 @@ See the CMU Common Lisp User's Manual for more information.
 ;;; Steps to the next code-location
 (def-debug-command "STEP" ()
   (setf *number-of-steps* (read-if-available 1))
-  (step *current-frame*)
+  (set-step-breakpoint *current-frame*)
   (continue *debug-condition*)
   (error "Couldn't continue."))
   
-- 
GitLab