Change paranoid error hook so that it aborts the error without giving
authorHal Abelson <edu/mit/hal>
Wed, 13 Jul 1988 20:09:56 +0000 (20:09 +0000)
committerHal Abelson <edu/mit/hal>
Wed, 13 Jul 1988 20:09:56 +0000 (20:09 +0000)
the user any options.

v7/src/runtime/emacs.scm

index 823cb5ac0e4bf97085dab64baebda8cf03d5d865..9e2ad93fe0ab7b2ead2659c435aa5721e6a75aec 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/emacs.scm,v 14.1 1988/06/13 11:43:56 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/emacs.scm,v 14.2 1988/07/13 20:09:56 hal Rel $
 
 Copyright (c) 1988 Massachusetts Institute of Technology
 
@@ -128,10 +128,8 @@ MIT in each case. |#
   (beep console-output-port)
   (if paranoid-error-decision?
       (begin
-       (transmit-signal-with-argument #\P
-"Error! Type ctl-E to enter error loop, anything else to return to top level.")
-       (if (not (char-ci=? (emacs/read-char-immediate) #\C-E))
-           (abort-to-previous-driver "Quit!")))))
+       (transmit-signal-with-argument #\P "Error!")
+       (abort-to-previous-driver "Quit!"))))
 
 (define paranoid-error-decision?
   false)