Mention SB-EXT:EXIT instead of SB-EXT:QUIT in docstrings, etc.
authorJan Moringen <jmoringe@techfak.uni-bielefeld.de>
Tue, 7 Aug 2012 14:57:49 +0000 (16:57 +0200)
committerStas Boukarev <stassats@gmail.com>
Sun, 12 Aug 2012 04:05:16 +0000 (08:05 +0400)
Suggest SB-EXT:EXIT instead of SB-EXT:QUIT in help string in
%INVOKE-DEBUGGER

Refer to SB-EXT:EXIT instead of SB-EXT:QUIT in docstring of
SB-EXT:SAVE-LISP-AND-DIE

Refer to SB-EXT:EXIT instead of SB-EXT:QUIT in docstring of
SB-EXT:*EXIT-HOOKS*

src/code/debug.lisp
src/code/save.lisp
src/code/target-extensions.lisp

index 59a3aad..b9918ab 100644 (file)
@@ -681,7 +681,7 @@ reset to ~S."
                (when *debug-beginner-help-p*
                  (format *debug-io*
                          "~%~@<Type HELP for debugger help, or ~
-                               (SB-EXT:QUIT) to exit from SBCL.~:@>~2%"))
+                               (SB-EXT:EXIT) to exit from SBCL.~:@>~2%"))
                (show-restarts *debug-restarts* *debug-io*))
              (internal-debug))
         (when background-p
index fa99ce0..a05a851 100644 (file)
@@ -55,7 +55,7 @@ The following &KEY arguments are defined:
      The function to run when the created core file is resumed. The
      default function handles command line toplevel option processing
      and runs the top level read-eval-print loop. This function returning
-     is equivalent to (SB-EXT:QUIT :UNIX-STATUS 0) being called.
+     is equivalent to (SB-EXT:EXIT :CODE 0) being called.
 
      TOPLEVEL functions should always provide an ABORT restart: otherwise
      code they call will run without one.
index 6963eeb..088694d 100644 (file)
@@ -39,7 +39,7 @@ applications.")
   #!+sb-doc
   "This is a list of functions which are called in an unspecified
 order when SBCL process exits. Unused by SBCL itself: reserved for
-user and applications. Using (QUIT :RECKLESSLY-P T), or calling
+user and applications. Using (SB-EXT:EXIT :ABORT T), or calling
 exit(3) directly will circumvent these hooks.")
 
 \f