aboutsummaryrefslogtreecommitdiff
path: root/src/interp/g-boot.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/g-boot.boot')
-rw-r--r--src/interp/g-boot.boot2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interp/g-boot.boot b/src/interp/g-boot.boot
index 77d99e9e..fc45f8d5 100644
--- a/src/interp/g-boot.boot
+++ b/src/interp/g-boot.boot
@@ -345,7 +345,7 @@ defISReverse(x,a) ==
x is ['CONS,:.] =>
null third x => ['CONS,second x, a]
y := defISReverse(third x, NIL)
- RPLAC(third y,['CONS,second x,a])
+ y.rest.rest.first := ['CONS,second x,a]
y
ERRHUH()