aboutsummaryrefslogtreecommitdiff
path: root/src/boot/includer.boot.pamphlet
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2007-09-11 18:49:07 +0000
committerdos-reis <gdr@axiomatics.org>2007-09-11 18:49:07 +0000
commitb9eed452db6231458c941041b7090c0e62426eae (patch)
treec7ed30a71f335a39c04c3b63188820e80852650d /src/boot/includer.boot.pamphlet
parentef3f39b528532d50813b8754c8ca6ff3fce4f710 (diff)
downloadopen-axiom-b9eed452db6231458c941041b7090c0e62426eae.tar.gz
src/lisp/
2007-09-11 Gabriel Dos Reis <gdr@cs.tamu.edu> * core.lisp.in (|coreError|): Rename from |error|. Adjust callers. src/boot/ 2007-09-11 Gabriel Dos Reis <gdr@cs.tamu.edu> * ast.boot.pamphlet (bfCompDef): Call coreError, not error. * includer.boot.pamphlet (shoeNotFound): Likewise. (SoftShoeError): Likewise.
Diffstat (limited to 'src/boot/includer.boot.pamphlet')
-rw-r--r--src/boot/includer.boot.pamphlet8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/boot/includer.boot.pamphlet b/src/boot/includer.boot.pamphlet
index 803d5666..e613d5c4 100644
--- a/src/boot/includer.boot.pamphlet
+++ b/src/boot/includer.boot.pamphlet
@@ -362,7 +362,7 @@ shoeCLOSE stream ==
-- error out if file is not found.
shoeNotFound fn ==
- error [fn, '" not found"]
+ coreError [fn, '" not found"]
nil
@@ -382,7 +382,7 @@ shoeConsole line ==
shoeSpaces n == MAKE_-FULL_-CVEC(n, '".")
SoftShoeError(posn,key)==
- error ['"in line ", STRINGIMAGE lineNo posn]
+ coreError ['"in line ", STRINGIMAGE lineNo posn]
shoeConsole lineString posn
shoeConsole CONCAT(shoeSpaces lineCharacter posn,'"|")
shoeConsole key
@@ -691,7 +691,7 @@ bPremStreamNull(s)==
(DEFUN |shoeCLOSE| (|stream|) (PROG () (RETURN (CLOSE |stream|))))
(DEFUN |shoeNotFound| (|fn|)
- (PROG () (RETURN (PROGN (|error| (LIST |fn| " not found")) NIL))))
+ (PROG () (RETURN (PROGN (|coreError| (LIST |fn| " not found")) NIL))))
(DEFUN |shoeReadLispString| (|s| |n|)
(PROG (|l|)
@@ -716,7 +716,7 @@ bPremStreamNull(s)==
(PROG ()
(RETURN
(PROGN
- (|error| (LIST "in line " (STRINGIMAGE (|lineNo| |posn|))))
+ (|coreError| (LIST "in line " (STRINGIMAGE (|lineNo| |posn|))))
(|shoeConsole| (|lineString| |posn|))
(|shoeConsole|
(CONCAT (|shoeSpaces| (|lineCharacter| |posn|)) "|"))