aboutsummaryrefslogtreecommitdiff
path: root/src/interp/bootlex.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/bootlex.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/bootlex.lisp')
-rw-r--r--src/interp/bootlex.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/bootlex.lisp b/src/interp/bootlex.lisp
index 0f8768b7..77147e7a 100644
--- a/src/interp/bootlex.lisp
+++ b/src/interp/bootlex.lisp
@@ -54,10 +54,10 @@
(defun print-defun (name body)
(let* ((sp (assoc 'compiler-output-stream optionlist))
(st (if sp (cdr sp) |$OutputStream|)))
- (if (and (is-console st) (symbolp name) (fboundp name)
+ (if (and (|ioTerminal?| st) (symbolp name) (fboundp name)
(not (compiled-function-p (symbol-function name))))
(compile name))
- (when (or |$PrettyPrint| (not (is-console st)))
+ (when (or |$PrettyPrint| (not (|ioTerminal?| st)))
(print-full body st) (force-output st))))