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

defswitch for batch-mode should be at top level.

parent c260719d
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/commandline.lisp,v 1.5 1995/08/18 17:03:03 phg Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/commandline.lisp,v 1.6 1996/05/08 02:03:08 ram Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -184,8 +184,8 @@
(defun batch-switch-demon (switch)
(setq *batch-mode* t)
(setf (cmd-switch-value switch) t)
(defswitch "batch" #'batch-switch-demon))
(setf (cmd-switch-value switch) t))
(defswitch "batch" #'batch-switch-demon)
(defun cmd-switch-arg (switch)
(or (cmd-switch-value switch)
......
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