From bf230599052ea440b4f9313da9453cd1ff39c87a Mon Sep 17 00:00:00 2001
From: dtc <dtc>
Date: Mon, 5 Jan 1998 20:09:21 +0000
Subject: [PATCH] Patch from Timothy Miller:

In the debugger, breakpoint <loc> :function <fn> wouldn't actually put
the breakpoint in the right function if <fn> was different from the
current function.
---
 code/debug.lisp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/code/debug.lisp b/code/debug.lisp
index 20ee2a976..eb3ab311c 100644
--- a/code/debug.lisp
+++ b/code/debug.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/debug.lisp,v 1.47 1997/12/31 18:01:05 dtc Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/debug.lisp,v 1.48 1998/01/05 20:09:21 dtc Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -1489,6 +1489,7 @@ See the CMU Common Lisp User's Manual for more information.
 		  (setf function (eval (pop command-line)))
 		  (setf *default-breakpoint-debug-function*
 			(di:function-debug-function function))
+                  (setf place *default-breakpoint-debug-function*)
 		  (setf *possible-breakpoints*
 			(possible-breakpoints
 			 *default-breakpoint-debug-function*))))))
-- 
GitLab