From: Jan Moringen Date: Tue, 7 Aug 2012 14:57:49 +0000 (+0200) Subject: Mention SB-EXT:EXIT instead of SB-EXT:QUIT in docstrings, etc. X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=3f8a69b8341702c1fb544af546e079b35761c48a;p=sbcl.git Mention SB-EXT:EXIT instead of SB-EXT:QUIT in docstrings, etc. 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* --- diff --git a/src/code/debug.lisp b/src/code/debug.lisp index 59a3aad..b9918ab 100644 --- a/src/code/debug.lisp +++ b/src/code/debug.lisp @@ -681,7 +681,7 @@ reset to ~S." (when *debug-beginner-help-p* (format *debug-io* "~%~@~2%")) + (SB-EXT:EXIT) to exit from SBCL.~:@>~2%")) (show-restarts *debug-restarts* *debug-io*)) (internal-debug)) (when background-p diff --git a/src/code/save.lisp b/src/code/save.lisp index fa99ce0..a05a851 100644 --- a/src/code/save.lisp +++ b/src/code/save.lisp @@ -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. diff --git a/src/code/target-extensions.lisp b/src/code/target-extensions.lisp index 6963eeb..088694d 100644 --- a/src/code/target-extensions.lisp +++ b/src/code/target-extensions.lisp @@ -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.")