From 9a593e3b395c1ba0c6036760c12713d7485f8c54 Mon Sep 17 00:00:00 2001 From: dos-reis Date: Thu, 4 Aug 2011 13:56:52 +0000 Subject: cleanup --- src/interp/sys-utility.boot | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/interp/sys-utility.boot') 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'. -- cgit v1.2.3