Skip to content
Snippets Groups Projects
Commit 22b8ad37 authored by ram's avatar ram
Browse files

tweak doc string.

parent 6a064b81
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/save.lisp,v 1.17 1993/04/28 01:56:52 wlott Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/save.lisp,v 1.18 1993/08/22 11:06:04 ram Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -116,10 +116,10 @@ ...@@ -116,10 +116,10 @@
following keywords are defined: following keywords are defined:
:purify :purify
If true, do a purifying GC which moves all dynamically allocated If true (the default), do a purifying GC which moves all dynamically
objects into static space so that they stay pure. This takes somewhat allocated objects into static space so that they stay pure. This takes
longer than the normal GC which is otherwise done, but GC's will done somewhat longer than the normal GC which is otherwise done, but GC's will
less often and take less time in the resulting core file. done less often and take less time in the resulting core file.
:root-structures :root-structures
:constants :constants
...@@ -129,7 +129,7 @@ ...@@ -129,7 +129,7 @@
will be better if they are. They are meaningless if :purify is NIL. will be better if they are. They are meaningless if :purify is NIL.
:init-function :init-function
This is a function which is called when the created core file is This is the function that starts running when the created core file is
resumed. The default function simply invokes the top level resumed. The default function simply invokes the top level
read-eval-print loop. If the function returns the lisp will exit. read-eval-print loop. If the function returns the lisp will exit.
...@@ -142,7 +142,7 @@ ...@@ -142,7 +142,7 @@
library:site-init. No error if this does not exist. library:site-init. No error if this does not exist.
:print-herald :print-herald
If true, print out the lisp system herald when starting." If true (the default), print out the lisp system herald when starting."
(when (fboundp 'eval:flush-interpreted-function-cache) (when (fboundp 'eval:flush-interpreted-function-cache)
(eval:flush-interpreted-function-cache)) (eval:flush-interpreted-function-cache))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment