aboutsummaryrefslogtreecommitdiff
path: root/src/interp/preparse.lisp
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2012-05-07 20:17:48 +0000
committerdos-reis <gdr@axiomatics.org>2012-05-07 20:17:48 +0000
commitd521a65ba712bf80f5bb6677e04d6a5ab36a42a6 (patch)
tree526828111f15df0a4bab047326fda317ae333a87 /src/interp/preparse.lisp
parent171ca9c9ca0ae4c58c5c25c51122c662b0cafe02 (diff)
downloadopen-axiom-d521a65ba712bf80f5bb6677e04d6a5ab36a42a6.tar.gz
* interp/vmlisp.lisp (ioTerminal?): Rename form IS-CONSOLE.
* interp/bootlex.lisp: Adjust. * interp/diagnostics.boot: Likewise. * interp/macros.lisp: Likewise. * interp/msgdb.boot: Likewise. * interp/parsing.lisp: Likewise. * interp/preparse.lisp: Likewise. * interp/server.boot: Likewise.
Diffstat (limited to 'src/interp/preparse.lisp')
-rw-r--r--src/interp/preparse.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/preparse.lisp b/src/interp/preparse.lisp
index 27e29538..d3585cea 100644
--- a/src/interp/preparse.lisp
+++ b/src/interp/preparse.lisp
@@ -167,7 +167,7 @@
(when (and LINES (EQL SLOC 0))
(IF (AND NCOMBLOCK (NOT (ZEROP (CAR NCOMBLOCK))))
(FINCOMBLOCK NUM NUMS LOCS NCOMBLOCK linelist))
- (IF (NOT (IS-CONSOLE in-stream))
+ (IF (NOT (|ioTerminal?| in-stream))
(setq $preparse-last-line
(|reverse!| $echolinestack)))
(RETURN (|pairList| (|reverse!| NUMS)
@@ -181,7 +181,7 @@
(PUSH A LINES)
(PUSH NUM NUMS)
(setq PARENLEV (+ PARENLEV PCOUNT))
- (when (and (is-console in-stream) (not continue))
+ (when (and (|ioTerminal?| in-stream) (not continue))
(setq $preparse-last-line nil)
(RETURN (|pairList| (|reverse!| NUMS)
(PARSEPILES (|reverse!| LOCS) (|reverse!| LINES)))))