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 59099875..d6570961 100644
--- a/src/interp/ht-root.boot
+++ b/src/interp/ht-root.boot
@@ -126,7 +126,7 @@ htSetSystemVariableKind(htPage,[variable,name,fun]) ==
value := htpLabelInputString(htPage,name)
if STRINGP value and fun then value := FUNCALL(fun,value)
--SCM::what to do??? if not FIXP value then userError ???
- SET(variable,value)
+ setDynamicBinding(variable,value)
htSystemVariables ()
htSetSystemVariable(htPage,[name,value]) ==
@@ -134,7 +134,7 @@ htSetSystemVariable(htPage,[name,value]) ==
value = 'on => true
value = 'off => nil
value
- SET(name,value)
+ setDynamicBinding(name,value)
htSystemVariables ()
htGloss(pattern) == htGlossPage(nil,dbNonEmptyPattern pattern or '"*",true)