Use new procedure EXIT-SCHEME instead of %EXIT.
authorChris Hanson <org/chris-hanson/cph>
Mon, 10 Feb 1992 12:03:33 +0000 (12:03 +0000)
committerChris Hanson <org/chris-hanson/cph>
Mon, 10 Feb 1992 12:03:33 +0000 (12:03 +0000)
v7/src/edwin/basic.scm

index c7242f5c8c08f792da94b4c54e866e8fe9f5a57f..1708db11f55fe7fa575c882cad8ff3815b0dbd4c 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/edwin/basic.scm,v 1.119 1992/02/08 15:23:24 cph Exp $
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/edwin/basic.scm,v 1.120 1992/02/10 12:03:33 cph Exp $
 ;;;
 ;;;    Copyright (c) 1986, 1989-92 Massachusetts Institute of Technology
 ;;;
@@ -324,14 +324,14 @@ With argument, saves visited file first."
 With prefix arg, silently save all file-visiting buffers, then kill."
   "P"
   (lambda (no-confirmation?)
-    (save-buffers-and-exit no-confirmation? "Scheme" %exit)))
+    (save-buffers-and-exit no-confirmation? "Scheme" exit-scheme)))
 
 (define (save-buffers-kill-edwin #!optional no-confirmation?)
   (let ((no-confirmation?
         (and (not (default-object? no-confirmation?)) no-confirmation?)))
     (if editor-can-exit?
        (save-buffers-and-exit no-confirmation? "Edwin" exit-editor)
-       (save-buffers-and-exit no-confirmation? "Scheme" %exit))))
+       (save-buffers-and-exit no-confirmation? "Scheme" exit-scheme))))
 
 (define-command save-buffers-kill-edwin
   "Offer to save each buffer, then kill Edwin, returning to Scheme.