aboutsummaryrefslogtreecommitdiff
path: root/src/interp/server.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/server.boot')
-rw-r--r--src/interp/server.boot6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interp/server.boot b/src/interp/server.boot
index dff51876..6e73a06a 100644
--- a/src/interp/server.boot
+++ b/src/interp/server.boot
@@ -52,7 +52,7 @@ serverReadLine(stream) ==
not $SpadServer or not IS_-CONSOLE stream =>
read_-line(stream)
IN_-STREAM: fluid := stream
- _*EOF_*: fluid := NIL
+ _*EOF_*: fluid := nil
line :=
while not $EndServerSession and not _*EOF_* repeat
if $NeedToSignalSessionManager then
@@ -153,11 +153,11 @@ parseAndEvalStr string ==
parseAndEvalStr1 string ==
string.0 = char ")" =>
doSystemCommand subSequence(string, 1)
- processInteractive(ncParseFromString string, NIL)
+ processInteractive(ncParseFromString string, nil)
protectedEVAL x ==
error := true
- val := NIL
+ val := nil
try
val := eval x
error := false