From b9eed452db6231458c941041b7090c0e62426eae Mon Sep 17 00:00:00 2001 From: dos-reis Date: Tue, 11 Sep 2007 18:49:07 +0000 Subject: src/lisp/ 2007-09-11 Gabriel Dos Reis * core.lisp.in (|coreError|): Rename from |error|. Adjust callers. src/boot/ 2007-09-11 Gabriel Dos Reis * ast.boot.pamphlet (bfCompDef): Call coreError, not error. * includer.boot.pamphlet (shoeNotFound): Likewise. (SoftShoeError): Likewise. --- src/boot/includer.boot.pamphlet | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/boot/includer.boot.pamphlet') 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|)) "|")) -- cgit v1.2.3