aboutsummaryrefslogtreecommitdiff
path: root/src/interp/ht-root.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2011-05-19 02:28:08 +0000
committerdos-reis <gdr@axiomatics.org>2011-05-19 02:28:08 +0000
commit2f97f0a378ac0663d14f1e4e5a8df6c3d824fdd6 (patch)
tree756dc891b84576b3697a1d636e908328afb7719b /src/interp/ht-root.boot
parentaf7a143e3a13e932e243165814fa40424507dae0 (diff)
downloadopen-axiom-2f97f0a378ac0663d14f1e4e5a8df6c3d824fdd6.tar.gz
more cleanup
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)