aboutsummaryrefslogtreecommitdiff
path: root/src/interp/i-intern.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/i-intern.boot')
-rw-r--r--src/interp/i-intern.boot8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/interp/i-intern.boot b/src/interp/i-intern.boot
index 3116293f..681464a6 100644
--- a/src/interp/i-intern.boot
+++ b/src/interp/i-intern.boot
@@ -162,10 +162,10 @@ mkAtree2(x,op,argl) ==
(op="case") and (nargl = 2) =>
[mkAtreeNode "case",mkAtree1 first argl,unabbrev CADR argl]
op="REPEAT" => [mkAtreeNode op,:transformREPEAT argl]
- op="LET" and argl is [['construct,:.],rhs] =>
- [mkAtreeNode "LET",first argl,mkAtree1 rhs]
- op="LET" and argl is [[":",a,.],rhs] =>
- mkAtree1 ["SEQ",first argl,["LET",a,rhs]]
+ op="%LET" and argl is [['construct,:.],rhs] =>
+ [mkAtreeNode "%LET",first argl,mkAtree1 rhs]
+ op="%LET" and argl is [[":",a,.],rhs] =>
+ mkAtree1 ["SEQ",first argl,["%LET",a,rhs]]
op is ['_$elt,D,op1] =>
op1 is "=" =>
a' := [mkAtreeNode '_=,:[mkAtree1 arg for arg in argl]]