aboutsummaryrefslogtreecommitdiff
path: root/src/interp/parsing.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/parsing.lisp')
-rw-r--r--src/interp/parsing.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/parsing.lisp b/src/interp/parsing.lisp
index 21ec9745..7a45c658 100644
--- a/src/interp/parsing.lisp
+++ b/src/interp/parsing.lisp
@@ -518,7 +518,7 @@ the stack, then stack a NIL. Return the value of prod."
"Tell me what the current state of the parsing world is."
;(IOStreams-show)
(current-line-show)
- (if (or $BOOT $SPAD) (next-lines-show))
+ (if $SPAD (next-lines-show))
(token-stack-show)
;(reduce-stack-show)
nil)
@@ -529,7 +529,7 @@ the stack, then stack a NIL. Return the value of prod."
(current-line-clear)
(token-stack-clear)
(reduce-stack-clear)
- (if (or $BOOT $SPAD) (next-lines-clear))
+ (if $SPAD (next-lines-clear))
nil)
;; auxiliary functions needed by the parser