aboutsummaryrefslogtreecommitdiff
path: root/src/interp/word.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/word.boot')
-rw-r--r--src/interp/word.boot4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/word.boot b/src/interp/word.boot
index 2f6feac1..7fa391fd 100644
--- a/src/interp/word.boot
+++ b/src/interp/word.boot
@@ -40,7 +40,7 @@ buildFunctionTable(dicts) ==
buildWordTable getListOfFunctionNames dicts
buildWordTable u ==
- table:= MAKE_-HASHTABLE 'ID
+ table:= hashTable 'EQ
for s in u repeat
key := UPCASE s.0
HPUT(table,key,[[s,:wordsOfString s],:HGET(table,key)])
@@ -78,7 +78,7 @@ readFunctionTable() ==
$wordDictionary = 'development => 'SPADD
'SPADC
stream:= readLib(name,'DATABASE)
- table:= MAKE_-HASHTABLE 'ID
+ table:= hashTable 'EQ
for key in RKEYIDS makePathname(name,'DATABASE,"*") repeat
HPUT(table,kk:=object2Identifier key, rread(kk,stream,nil))
RSHUT stream