aboutsummaryrefslogtreecommitdiff
path: root/src/interp/sys-utility.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2011-04-19 16:12:17 +0000
committerdos-reis <gdr@axiomatics.org>2011-04-19 16:12:17 +0000
commit9430f000bbcedcd6f0edbe1c4852cb2b51c50ccc (patch)
tree97ad3fbf69b7c15f20c2dbef3f2a11860ec6fd0b /src/interp/sys-utility.boot
parentb893a938b4051bc30a9c44bdcf6000bff11969c4 (diff)
downloadopen-axiom-9430f000bbcedcd6f0edbe1c4852cb2b51c50ccc.tar.gz
* boot/tokens.boot: charUpcase, charDowncase, stringUpcase,
singDowncase, valueEq? are new builtin functions. * boot/ast.boot (bfMembr): Tidy.
Diffstat (limited to 'src/interp/sys-utility.boot')
-rw-r--r--src/interp/sys-utility.boot4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/sys-utility.boot b/src/interp/sys-utility.boot
index f5e1e7aa..fb967599 100644
--- a/src/interp/sys-utility.boot
+++ b/src/interp/sys-utility.boot
@@ -133,7 +133,7 @@ CONTAINED(x,y) == main where
equal(x,y)
eq(x,y) ==
cons? y => eq(x, first y) or eq(x, rest y)
- symbolEqual?(x,y)
+ symbolEq?(x,y)
equal(x,y) ==
atom y => x = y
equal(x, first y) or equal(x, rest y)
@@ -275,7 +275,7 @@ PRINT_-AND_-EVAL_-DEFUN(name,body) ==
hashTable cmp ==
testFun :=
cmp in '(ID EQ) => function sameObject?
- cmp = 'EQL => function scalarEqual?
+ cmp = 'EQL => function scalarEq?
cmp = 'EQUAL => function EQUAL
error '"bad arg to hashTable"
MAKE_-HASH_-TABLE(KEYWORD::TEST,testFun)