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.boot2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interp/server.boot b/src/interp/server.boot
index 8173def3..17e884e9 100644
--- a/src/interp/server.boot
+++ b/src/interp/server.boot
@@ -158,6 +158,6 @@ parseAndEvalStr1 string ==
protectedEVAL x ==
error := true
val := NIL
- UNWIND_-PROTECT((val := EVAL x; error := NIL),
+ UNWIND_-PROTECT((val := eval x; error := NIL),
error => (resetStackLimits(); sendHTErrorSignal()))
val