aboutsummaryrefslogtreecommitdiff
path: root/src/interp/lisp-backend.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2011-08-04 13:56:52 +0000
committerdos-reis <gdr@axiomatics.org>2011-08-04 13:56:52 +0000
commit9a593e3b395c1ba0c6036760c12713d7485f8c54 (patch)
treedd8eadbf07dde50ca15d6aa4181c902ad7b09d3c /src/interp/lisp-backend.boot
parente77d30ccf1b663aaa6ec1e017fa8e31f3296afeb (diff)
downloadopen-axiom-9a593e3b395c1ba0c6036760c12713d7485f8c54.tar.gz
cleanup
Diffstat (limited to 'src/interp/lisp-backend.boot')
-rw-r--r--src/interp/lisp-backend.boot6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interp/lisp-backend.boot b/src/interp/lisp-backend.boot
index 7bbbb22f..ceeed354 100644
--- a/src/interp/lisp-backend.boot
+++ b/src/interp/lisp-backend.boot
@@ -583,7 +583,7 @@ for x in [
-- symbol unary functions
['%gensym, :'GENSYM],
['%sname, :'SYMBOL_-NAME],
- ['%ident?, :'IDENTP],
+ ['%ident?, :'ident?],
['%property,:'GET],
-- string functions
@@ -690,10 +690,10 @@ getOpcodeExpander op ==
++ suitable for evaluation by the VM.
expandToVMForm x ==
x = '%false or x = '%nil => 'NIL
- IDENTP x and (x' := x has %Rename) => x'
+ ident? x and (x' := x has %Rename) => x'
atomic? x => x
[op,:args] := x
- IDENTP op and (fun:= getOpcodeExpander op) => apply(fun,x,nil)
+ ident? op and (fun:= getOpcodeExpander op) => apply(fun,x,nil)
op' := expandToVMForm op
args' := expandToVMForm args
sameObject?(op,op') and sameObject?(args,args') => x