aboutsummaryrefslogtreecommitdiff
path: root/src/interp/g-error.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2009-09-25 20:48:45 +0000
committerdos-reis <gdr@axiomatics.org>2009-09-25 20:48:45 +0000
commit489cfd14dccfcaf7b0ebd41e9d0f8e081a9d1d9f (patch)
tree84a87ab3bdba58fe9fd2975efc829d1ed10b8781 /src/interp/g-error.boot
parent7704713134cb251be6129f38833930228e09eee2 (diff)
downloadopen-axiom-489cfd14dccfcaf7b0ebd41e9d0f8e081a9d1d9f.tar.gz
* boot/ast.boot (bfMember): Improve a bit.
* boot/tokens.boot: Don't rename 'is' and 'inst'. * boot/parser.boot: Use 'in' instead of 'MEMQ' where approrpriate. * interp/: Likewise.
Diffstat (limited to 'src/interp/g-error.boot')
-rw-r--r--src/interp/g-error.boot2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interp/g-error.boot b/src/interp/g-error.boot
index f0774be7..3b5c67d6 100644
--- a/src/interp/g-error.boot
+++ b/src/interp/g-error.boot
@@ -95,7 +95,7 @@ errorSupervisor1(errorType,errorMsg,$BreakMode) ==
'"Error with unknown classification"
msg :=
errorMsg is ['mathprint, :.] => errorMsg
- not PAIRP errorMsg => ['" ", errorMsg]
+ atom errorMsg => ['" ", errorMsg]
needsToSplitMessage errorMsg => rest [:['%l,'" ",u] for u in errorMsg]
['" ",:errorMsg]
sayErrorly(errorLabel, msg)