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.boot4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/ht-root.boot b/src/interp/ht-root.boot
index 30bb52b4..290cf622 100644
--- a/src/interp/ht-root.boot
+++ b/src/interp/ht-root.boot
@@ -115,7 +115,7 @@ htSetSystemVariableKind(htPage,[variable,name,fun]) ==
value := htpLabelInputString(htPage,name)
if string? value and fun then value := FUNCALL(fun,value)
--SCM::what to do??? if not integer? value then userError ???
- setDynamicBinding(variable,value)
+ symbolValue(variable) := value
htSystemVariables ()
htSetSystemVariable(htPage,[name,value]) ==
@@ -123,7 +123,7 @@ htSetSystemVariable(htPage,[name,value]) ==
value = 'on => true
value = 'off => nil
value
- setDynamicBinding(name,value)
+ symbolValue(name) := value
htSystemVariables ()
htGloss(pattern) == htGlossPage(nil,dbNonEmptyPattern pattern or '"*",true)