Skip to content
Snippets Groups Projects
Commit 463504f1 authored by dtc's avatar dtc
Browse files

Fix symbol value typo.

parent a48f8b53
No related branches found
No related tags found
No related merge requests found
/* /*
* main() entry point for a stand alone lisp image. * main() entry point for a stand alone lisp image.
* *
* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/lisp.c,v 1.18 2000/10/23 20:20:42 dtc Exp $ * $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/lisp.c,v 1.19 2000/10/24 11:02:49 dtc Exp $
* *
*/ */
...@@ -225,7 +225,7 @@ void main(int argc, char *argv[], char *envp[]) ...@@ -225,7 +225,7 @@ void main(int argc, char *argv[], char *envp[])
while ((arg = *++argptr) != NULL) while ((arg = *++argptr) != NULL)
{ {
if (strcmp(arg, "-batch") == 0) if (strcmp(arg, "-batch") == 0)
SetSymbolGlobalValue(BATCH_MODE, T); SetSymbolValue(BATCH_MODE, T);
} }
/* /*
......
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