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

Process the command line before printing the herald so that we can eval some

form and quit without printing anything.
parent 356f1eca
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.10 1991/09/03 20:44:46 ram Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/save.lisp,v 1.11 1992/02/06 01:09:12 ram Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -179,11 +179,11 @@ ...@@ -179,11 +179,11 @@
(load "home:.cmucl-init" :if-does-not-exist nil)))))) (load "home:.cmucl-init" :if-does-not-exist nil))))))
(when enable-gc (when enable-gc
(gc-on)) (gc-on))
(when print-herald
(print-herald))
(when process-command-line (when process-command-line
(ext::invoke-switch-demons *command-line-switches* (ext::invoke-switch-demons *command-line-switches*
*command-switch-demons*)) *command-switch-demons*))
(when print-herald
(print-herald))
(funcall init-function))) (funcall init-function)))
......
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