aboutsummaryrefslogtreecommitdiff
path: root/src/interp/ht-root.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/ht-root.boot')
-rw-r--r--src/interp/ht-root.boot2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interp/ht-root.boot b/src/interp/ht-root.boot
index 00b98472..1b9dbf35 100644
--- a/src/interp/ht-root.boot
+++ b/src/interp/ht-root.boot
@@ -113,7 +113,7 @@ htSystemVariables() == main where
htSetSystemVariableKind(htPage,[variable,name,fun]) ==
value := htpLabelInputString(htPage,name)
- if string? value and fun then value := FUNCALL(fun,value)
+ if string? value and fun then value := apply(fun,[value])
--SCM::what to do??? if not integer? value then userError ???
symbolValue(variable) := value
htSystemVariables ()