environment.
#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/error.scm,v 14.30 1992/02/25 22:54:36 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/error.scm,v 14.31 1992/04/06 05:49:26 cph Exp $
Copyright (c) 1988-92 Massachusetts Institute of Technology
(if (let ((types break-on-signals-types))
(and (not (null? types))
(intersect-generalizations? types)))
- (bkpt "BKPT entered because of BREAK-ON-SIGNALS:" condition))
+ (breakpoint-procedure 'INHERIT
+ "BKPT entered because of BREAK-ON-SIGNALS:"
+ condition))
(do ((frames dynamic-handler-frames (cdr frames)))
((null? frames))
(if (let ((types (caar frames)))
#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/rep.scm,v 14.26 1992/03/25 21:57:48 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/rep.scm,v 14.27 1992/04/06 05:49:12 cph Exp $
Copyright (c) 1988-92 Massachusetts Institute of Technology
(if (default-object? message) "Break!" message)
"break>"))))
-(define (bkpt datum . arguments)
- (apply breakpoint-procedure 'INHERIT datum arguments))
-
(define (breakpoint-procedure environment datum . arguments)
- ;; For upwards compatibility.
+ ;; BKPT expands into this.
(with-simple-restart 'CONTINUE "Return from BKPT."
(lambda ()
(read-eval-print environment
(lambda (port)
(newline port)
(format-error-message datum arguments port)))
- "break>"))))
+ "bkpt>"))))
(define (ve environment)
(read-eval-print (->environment environment) false 'INHERIT))
#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/runtime.pkg,v 14.142 1992/04/02 07:53:22 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/runtime.pkg,v 14.143 1992/04/06 05:49:19 cph Exp $
Copyright (c) 1988-92 Massachusetts Institute of Technology
abort->nearest
abort->previous
abort->top-level
- bkpt
breakpoint
breakpoint-procedure
cmdl-interrupt/abort-nearest
#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/runtime/runtime.pkg,v 14.142 1992/04/02 07:53:22 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/runtime/runtime.pkg,v 14.143 1992/04/06 05:49:19 cph Exp $
Copyright (c) 1988-92 Massachusetts Institute of Technology
abort->nearest
abort->previous
abort->top-level
- bkpt
breakpoint
breakpoint-procedure
cmdl-interrupt/abort-nearest