aboutsummaryrefslogtreecommitdiff
path: root/src/interp/buildom.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2009-01-04 12:50:32 +0000
committerdos-reis <gdr@axiomatics.org>2009-01-04 12:50:32 +0000
commit151f227545f5afa179bd1d0c4b179aa0a83b82f5 (patch)
tree335122f4d0615cf6d8f298dfcf5becfa2030de0b /src/interp/buildom.boot
parentad0d6445de436a1c7c04cfe14316d620cb9202b3 (diff)
downloadopen-axiom-151f227545f5afa179bd1d0c4b179aa0a83b82f5.tar.gz
* interp/buildom.boot (createEnum): Fix quoting.
* interp/compat.boot (system): Likewise. * interp/astr.boot (ncEltQ): Fix declaration. * interp/compiler.boot (compMapCond'): Likewise. (compMapCond): Likewise. (compMapCondFun): Remove declaration.
Diffstat (limited to 'src/interp/buildom.boot')
-rw-r--r--src/interp/buildom.boot2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interp/buildom.boot b/src/interp/buildom.boot
index c1bf3d0a..11a86a37 100644
--- a/src/interp/buildom.boot
+++ b/src/interp/buildom.boot
@@ -279,7 +279,7 @@ createEnum(sym, dom) ==
val := -1
for v in args for i in 0.. repeat
sym=v => return(val:=i)
- val<0 => userError ["Cannot coerce",sym,"to",["Enumeration",:args]]
+ val<0 => userError ['"Cannot coerce",sym,'"to",["Enumeration",:args]]
val
--% INSTANTIATORS