aboutsummaryrefslogtreecommitdiff
path: root/src/interp/i-output.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/i-output.boot')
-rw-r--r--src/interp/i-output.boot8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/interp/i-output.boot b/src/interp/i-output.boot
index 40ad756c..a05df223 100644
--- a/src/interp/i-output.boot
+++ b/src/interp/i-output.boot
@@ -1657,7 +1657,7 @@ outputOp x ==
n:=
GETL(op,"NARY") => 2
#args
- newop:= INTERN strconc("*",STRINGIMAGE n,PNAME op)
+ newop:= INTERN strconc('"*",STRINGIMAGE n,PNAME op)
[newop,:[outputOp y for y in args]]
x
@@ -2686,10 +2686,10 @@ parms2String x ==
x is [var] => var
if x is ["tuple",:.] then x := rest x
paren [parm xs for xs in tails x] where
- paren l == "strconc"/["(",:l,")"]
+ paren l == "strconc"/['"(",:l,'")"]
parm xs ==
null rest xs => first xs
- strconc(first xs, ", ")
+ strconc(first xs, '", ")
inputForm2String x ==
atom x => primaryForm2String x
@@ -2706,7 +2706,7 @@ inputForm2String x ==
op in '(_@ _:_: pretend) =>
typedForm2String(op, first args, second args)
op = "+->" =>
- strconc(parms2String second x, " ", first x, " ",
+ strconc(parms2String second x, '" ", first x, '" ",
inputForm2String third x)
callForm2String x
callForm2String x