aboutsummaryrefslogtreecommitdiff
path: root/src/interp/sys-macros.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/sys-macros.lisp')
-rw-r--r--src/interp/sys-macros.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/sys-macros.lisp b/src/interp/sys-macros.lisp
index 07eb99b2..f73cc080 100644
--- a/src/interp/sys-macros.lisp
+++ b/src/interp/sys-macros.lisp
@@ -87,7 +87,7 @@
`(CONS |$BFtag| (CONS ,MT ,EP)))
(defun MAKE-FLOAT (int frac fraclen exp)
- (if (AND $SPAD |$useBFasDefault|)
+ (if |$useBFasDefault|
(if (= frac 0)
(MAKE-BF int exp)
(MAKE-BF (+ (* int (expt 10 fraclen)) frac)
@@ -911,7 +911,7 @@
(defmacro SPADDO (&rest OL)
(PROG (VARS L VL V U INITS U-VARS U-VALS ENDTEST EXITFORMS BODYFORMS)
- (if (OR $BOOT (NOT $NEWSPAD))
+ (if (NOT $NEWSPAD)
(return (CONS 'DO OL)))
(SETQ L (COPY-LIST OL))
(if (OR (ATOM L) (ATOM (CDR L)))