aboutsummaryrefslogtreecommitdiff
path: root/src/interp/br-op1.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/br-op1.boot')
-rw-r--r--src/interp/br-op1.boot6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interp/br-op1.boot b/src/interp/br-op1.boot
index 6790d805..1d8e6ae7 100644
--- a/src/interp/br-op1.boot
+++ b/src/interp/br-op1.boot
@@ -92,7 +92,7 @@ dbShowOps(htPage,which,key,:options) ==
reduceByGroup(htPage,opAlist) ==
not dbFromConstructor?(htPage) or null $groupChoice => opAlist
dbExpandOpAlistIfNecessary(htPage,opAlist,'"operation",true,false)
- bitNumber := HGET($topicHash,$groupChoice)
+ bitNumber := tableValue($topicHash,$groupChoice)
res := [[op,:newItems] for [op,:items] in opAlist | newItems] where
newItems() ==
null bitNumber => items
@@ -215,7 +215,7 @@ conformString(form) ==
conform2StringList(form,opFn,argFn,exception) ==
exception := exception or '"%%%nothing%%%"
[op1,:args] := form
- op := IFCAR HGET($lowerCaseConTb,op1) or op1
+ op := IFCAR tableValue($lowerCaseConTb,op1) or op1
null args => apply(opFn,[op])
special := op in '(Union Record Mapping)
cosig :=
@@ -305,7 +305,7 @@ dbConformGen1(form,opButton?) ==
args => conform2StringList(form, opFunction,FUNCTION dbConformGen,nil)
apply(opFunction,[form])
-unAbbreviateIfNecessary op == IFCAR HGET($lowerCaseConTb, op) or op
+unAbbreviateIfNecessary op == IFCAR tableValue($lowerCaseConTb, op) or op
conname2StringList form ==
[PNAME unAbbreviateIfNecessary opOf form]