aboutsummaryrefslogtreecommitdiff
path: root/src/interp/htcheck.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/htcheck.boot')
-rw-r--r--src/interp/htcheck.boot4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/htcheck.boot b/src/interp/htcheck.boot
index d416508a..36fc0b40 100644
--- a/src/interp/htcheck.boot
+++ b/src/interp/htcheck.boot
@@ -91,8 +91,8 @@ buildHtMacroTable() ==
while not EOFP instream repeat
line := READLINE instream
getHtMacroItem line is [string,:numOfArgs] =>
- HPUT($htMacroTable,string,numOfArgs)
- for [s,:n] in $primitiveHtCommands repeat HPUT($htMacroTable,s,n)
+ tableValue($htMacroTable,string) := numOfArgs
+ for [s,:n] in $primitiveHtCommands repeat tableValue($htMacroTable,s) := n
else
sayBrightly '"Warning: macro table not found"
$htMacroTable