aboutsummaryrefslogtreecommitdiff
path: root/src/interp/i-syscmd.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2011-01-02 01:17:52 +0000
committerdos-reis <gdr@axiomatics.org>2011-01-02 01:17:52 +0000
commitb9a4e3cd1880e977a827a98b1cb69175e7ad1e74 (patch)
tree9b505483aa0d28ff9441b85231fc9f7d49553a2e /src/interp/i-syscmd.boot
parentf6f972eda48c04d11d8790ee24b038d8762ba34b (diff)
downloadopen-axiom-b9a4e3cd1880e977a827a98b1cb69175e7ad1e74.tar.gz
Remove uses of SETF in Boot codes
Diffstat (limited to 'src/interp/i-syscmd.boot')
-rw-r--r--src/interp/i-syscmd.boot2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interp/i-syscmd.boot b/src/interp/i-syscmd.boot
index ebc9a534..9af626d0 100644
--- a/src/interp/i-syscmd.boot
+++ b/src/interp/i-syscmd.boot
@@ -368,7 +368,7 @@ clearCmdParts(l is [opt,:vl]) ==
prop:= first p2
recordOldValue(x,prop,rest p2)
recordNewValue(x,prop,NIL)
- SETF(CAAR $InteractiveFrame,deleteAssoc(x,CAAR $InteractiveFrame))
+ CAAR($InteractiveFrame) := deleteAssoc(x,CAAR $InteractiveFrame)
p2:= assoc(option,rest p1) =>
recordOldValue(x,option,rest p2)
recordNewValue(x,option,NIL)