diff options
Diffstat (limited to 'src/boot/strap/ast.clisp')
-rw-r--r-- | src/boot/strap/ast.clisp | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/boot/strap/ast.clisp b/src/boot/strap/ast.clisp index 10dea59c..213414cd 100644 --- a/src/boot/strap/ast.clisp +++ b/src/boot/strap/ast.clisp @@ -1791,17 +1791,14 @@ (DEFUN |shoeFluids| (|x|) (COND - ((NULL |x|) NIL) - ((AND (SYMBOLP |x|) (|bfBeginsDollar| |x|)) (LIST |x|)) - ((ATOM |x|) NIL) - ((AND (CONSP |x|) (EQ (CAR |x|) 'QUOTE)) NIL) + ((AND (|ident?| |x|) (|bfBeginsDollar| |x|)) (LIST |x|)) + ((|atomic?| |x|) NIL) (T (|append| (|shoeFluids| (CAR |x|)) (|shoeFluids| (CDR |x|)))))) (DEFUN |shoeATOMs| (|x|) (COND - ((NULL |x|) NIL) - ((SYMBOLP |x|) (LIST |x|)) - ((ATOM |x|) NIL) + ((|ident?| |x|) (LIST |x|)) + ((|atomic?| |x|) NIL) (T (|append| (|shoeATOMs| (CAR |x|)) (|shoeATOMs| (CDR |x|)))))) (DEFUN |isDynamicVariable| (|x|) |