aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel Dos Reis <GabrielDosReis@users.noreply.github.com>2022-08-27 19:36:39 -0700
committerGitHub <noreply@github.com>2022-08-27 19:36:39 -0700
commit069c7d86ef4c4047bcd5d20cda1045c9ce35457d (patch)
tree42e16dfe95daa928114e24a296ce9b2e1fb960cc
parent8e451b6ece535c7fa55f0dc88ab94b48f03c598c (diff)
downloadopen-axiom-069c7d86ef4c4047bcd5d20cda1045c9ce35457d.tar.gz
Remove reference to PRELET and RELET (#20)
-rw-r--r--src/interp/lisp-backend.boot4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/lisp-backend.boot b/src/interp/lisp-backend.boot
index 120c030d..63040ce4 100644
--- a/src/interp/lisp-backend.boot
+++ b/src/interp/lisp-backend.boot
@@ -843,12 +843,12 @@ massageBackendCode x ==
-- temporarily have TRACELET report MAKEPROPs.
if (u := first x) = "MAKEPROP" and $TRACELETFLAG then
x.first := "MAKEPROP-SAY"
- u in '(DCQ RELET PRELET SPADLET SETQ %LET) =>
+ u in '(DCQ SPADLET SETQ %LET) =>
if u isnt 'DCQ and u isnt 'SETQ then
append!(x,$FUNNAME__TAIL)
x.first := "LETT"
massageBackendCode CDDR x
- if not (u in '(SETQ RELET)) then
+ if u ~= "SETQ" then
ident? second x => pushLocalVariable second x
second x is ["FLUID",:.] =>
PUSH(CADADR x, $FluidVars)