aboutsummaryrefslogtreecommitdiff
path: root/src/interp/pspad2.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/pspad2.boot')
-rw-r--r--src/interp/pspad2.boot4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/pspad2.boot b/src/interp/pspad2.boot
index e6528a19..074af02f 100644
--- a/src/interp/pspad2.boot
+++ b/src/interp/pspad2.boot
@@ -116,7 +116,7 @@ formatDeftranRepper([op,a],SEQflag) ==
a is ['SEQ,:r] => ['SEQ,:[formatSeqRepper(op,x) for x in r]]
a is ['IF,p,b,c] =>
formatDeftran(['IF,p,[op,b],[op, c]], SEQflag)
- a is ['LET,a,b] => formatDeftran(['LET,a,[op,b]],SEQflag)
+ a is ["%LET",a,b] => formatDeftran(["%LET",a,[op,b]],SEQflag)
a is ['not,[op,a,b]] and (op1 := LASSOC(op,$pspadRelationAlist)) =>
formatDeftran([op1,a,b],SEQflag)
a is ["return",n,r] =>
@@ -330,7 +330,7 @@ formatTail1 x ==
-- x = "." => format " "
formatConstructItem x == format x
-formatLET ["LET",a,b] ==
+formatLET ["%LET",a,b] ==
$insideTypeExpression: local := true
a = "Rep" or atom a and constructor? opOf b =>
tryBreakNB(formatAtom a and format " == ",b,":=","Led")