438 - unbelievable typo

This commit is contained in:
Kartik K. Agaram 2014-12-17 20:49:23 -08:00
parent 7c7d7d22a7
commit 420d3d420a
2 changed files with 7 additions and 1 deletions

2
mu.arc
View File

@ -717,7 +717,7 @@
(when acons.x ; proper lists only
(if (testify.f car.x)
cdr.x
(cons car.x (drop-one f x)))))
(cons car.x (drop-one f cdr.x)))))
; memory allocation

View File

@ -3410,6 +3410,12 @@
(deref)
(deref))))
(prn "F - 'deref' can be chained"))
(if (~iso '((5 integer) (foo))
(deref:deref '((3 integer-address-address)
(deref)
(foo)
(deref))))
(prn "F - 'deref' skips junk"))
; addr
(prn "addr")