aboutsummaryrefslogtreecommitdiff
path: root/src/interp/sys-utility.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/sys-utility.boot
parente77d30ccf1b663aaa6ec1e017fa8e31f3296afeb (diff)
downloadopen-axiom-9a593e3b395c1ba0c6036760c12713d7485f8c54.tar.gz
cleanup
Diffstat (limited to 'src/interp/sys-utility.boot')
-rw-r--r--src/interp/sys-utility.boot6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interp/sys-utility.boot b/src/interp/sys-utility.boot
index 53114135..b6c0ba0e 100644
--- a/src/interp/sys-utility.boot
+++ b/src/interp/sys-utility.boot
@@ -63,7 +63,7 @@ $COMBLOCKLIST := nil
++ representation of a domain, as a Lisp type specifier as seen by
++ the runtime system.
getVMType d ==
- IDENTP d =>
+ ident? d =>
d is "*" => d
"%Thing"
string? d => "%Thing" -- literal flag parameter
@@ -102,12 +102,12 @@ getVMType d ==
++ returns true if `f' is bound to a macro.
macrop: %Thing -> %Boolean
macrop f ==
- IDENTP f and not null MACRO_-FUNCTION f
+ ident? f and not null MACRO_-FUNCTION f
++ returns true if `f' is bound to a function
functionp: %Thing -> %Boolean
functionp f ==
- IDENTP f => FBOUNDP f and null MACRO_-FUNCTION f
+ ident? f => FBOUNDP f and null MACRO_-FUNCTION f
function? f
++ returns true if `x' is contained in `y'.