aboutsummaryrefslogtreecommitdiff
path: root/src/interp/util.lisp
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2012-05-21 08:46:31 +0000
committerdos-reis <gdr@axiomatics.org>2012-05-21 08:46:31 +0000
commitec02c6670d57cbb6814c6a79e133e1e2b41ed0af (patch)
treee9a0ff29216c7efee328f4cf0534e50f7d0da5c3 /src/interp/util.lisp
parent327b68f0e2086eef9fc755b9ffba76343839e4ee (diff)
downloadopen-axiom-ec02c6670d57cbb6814c6a79e133e1e2b41ed0af.tar.gz
* interp/parsing.lisp: Remove.
* interp/spad-parser.boot (floatExponent): New. (parseFloatExponent): Use it instead of FLOATEXPID. * interp/lexing.boot (nextLinesClear!): New. (ioClear!): Likewise. (OUT-STREAM): Define here. * interp/debug.lisp: Import lexing instead of parsing. Tidy. * interp/preparse.lisp: Likewise. * interp/spad.lisp: Likewise. * interp/util.lisp: Likewise. * interp/Makefile.in (OBJS): Do not include parsing.$(FASLEXT). (parsing.$(FASLEXT)): Remove. Adjust dependents.
Diffstat (limited to 'src/interp/util.lisp')
-rw-r--r--src/interp/util.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/util.lisp b/src/interp/util.lisp
index 4132d434..7f74ed54 100644
--- a/src/interp/util.lisp
+++ b/src/interp/util.lisp
@@ -50,7 +50,7 @@
(IMPORT-MODULE "vmlisp")
-(import-module "parsing")
+(import-module "lexing")
(in-package "BOOT")
@@ -265,7 +265,7 @@
(DECLARE (SPECIAL LINE))
(if (and (> (LENGTH LINE) 0) (EQ (CHAR LINE 0) #\) ))
(|processSynonyms|))
- (ioclear)
+ (|ioClear!|)
(LET* ((|$lineStack| (LIST (CONS 1 LINE)))
($SPAD T)
(PARSEOUT (PROG2 (|parseNewExpr|) (|popStack1|))))