aboutsummaryrefslogtreecommitdiff
path: root/src/interp/i-map.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2011-04-17 18:27:08 +0000
committerdos-reis <gdr@axiomatics.org>2011-04-17 18:27:08 +0000
commit0de5ea3df4ffff2d97202a66629e19e0579410ea (patch)
tree211b1d1d466c64aac746e9c377acf34adfb1c18b /src/interp/i-map.boot
parent1642c3f8ce94264813f4d7ac79f24f16f5fb7ded (diff)
downloadopen-axiom-0de5ea3df4ffff2d97202a66629e19e0579410ea.tar.gz
cleanup
Diffstat (limited to 'src/interp/i-map.boot')
-rw-r--r--src/interp/i-map.boot2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interp/i-map.boot b/src/interp/i-map.boot
index c373eaf9..7ffe222a 100644
--- a/src/interp/i-map.boot
+++ b/src/interp/i-map.boot
@@ -60,7 +60,7 @@ isInternalMapName name ==
-- this only returns true or false as a "best guess"
(not IDENTP(name)) or (name = "*") or (name = "**") => false
sz := # (name' := symbolName name)
- (sz < 7) or (char("*") ~= name'.0) => false
+ (sz < 7) or (char "*" ~= name'.0) => false
not digit? name'.1 => false
null STRPOS('"_;",name',1,NIL) => false
-- good enough