aboutsummaryrefslogtreecommitdiff
path: root/src/interp/i-map.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/i-map.boot')
-rw-r--r--src/interp/i-map.boot8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/interp/i-map.boot b/src/interp/i-map.boot
index dcdf4cf8..9bb13e51 100644
--- a/src/interp/i-map.boot
+++ b/src/interp/i-map.boot
@@ -48,8 +48,8 @@ $insideCompileBodyIfTrue := false
$specialMapNameSuffix := nil
makeInternalMapName(userName,numArgs,numMms,extraPart) ==
- name := strconc('"*",STRINGIMAGE numArgs,'";",
- object2String userName,'";",STRINGIMAGE numMms,'";",
+ name := strconc('"*",toString numArgs,'";",
+ object2String userName,'";",toString numMms,'";",
object2String frameName first $interpreterFrameRing )
if extraPart then name := strconc(name,'";",extraPart)
if $specialMapNameSuffix then
@@ -485,7 +485,7 @@ getEqualSublis pred == fn(pred,nil) where fn(x,sl) ==
--% User function analysis
mapCatchName mapname ==
- makeSymbol strconc('"$",STRINGIMAGE mapname,'"CatchMapIdentifier$")
+ makeSymbol strconc('"$",symbolName mapname,'"CatchMapIdentifier$")
analyzeMap(op,argTypes,mapDef, tar) ==
-- Top level enty point for map type analysis. Sets up catch point
@@ -988,7 +988,7 @@ mkValCheck(val,i) ==
mkSharpVar i ==
-- create #i
- makeSymbol strconc('"#",STRINGIMAGE i)
+ makeSymbol strconc('"#",toString i)
mapPredTran pred ==
-- transforms "x in i..j" to "x>=i and x<=j"