Change HOOK/REPL-EVAL to accept the calling REPL as its first
authorChris Hanson <org/chris-hanson/cph>
Thu, 12 Aug 1993 09:46:09 +0000 (09:46 +0000)
committerChris Hanson <org/chris-hanson/cph>
Thu, 12 Aug 1993 09:46:09 +0000 (09:46 +0000)
argument, in addition to the other arguments.

v7/src/edwin/debug.scm

index f9fc11168228adadeebab61c8c0e370c2516626e..6f937b513e8dfd5ad05f059beeb7da11826166b1 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    $Id: debug.scm,v 1.5 1993/08/12 08:34:58 jbank Exp $
+;;;    $Id: debug.scm,v 1.6 1993/08/12 09:46:09 cph Exp $
 ;;;
 ;;;    Copyright (c) 1992-93 Massachusetts Institute of Technology
 ;;;
@@ -1012,11 +1012,12 @@ If false show the bindings without frames."
        (define ,mark-procedure-symbol-name
         (lambda (ignore value)
           value))
-       (define (mark-stack/repl-eval s-expression environment syntax-table)
+       (define (mark-stack/repl-eval repl
+                                    s-expression environment syntax-table)
         (,mark-procedure-symbol-name
          'the-turd
          (saved-mark-stack-hook
-          s-expression environment syntax-table)))))
+          repl s-expression environment syntax-table)))))
   (the-environment))
 
 (set! hook/repl-eval mark-stack/repl-eval)