aboutsummaryrefslogtreecommitdiff
path: root/src/interp/sys-utility.boot
diff options
context:
space:
mode:
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'.