aboutsummaryrefslogtreecommitdiff
path: root/src/algebra/strap
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2011-01-02 01:00:55 +0000
committerdos-reis <gdr@axiomatics.org>2011-01-02 01:00:55 +0000
commitf6f972eda48c04d11d8790ee24b038d8762ba34b (patch)
tree59cd307203b83f4792f904ba40b8625ba04866ff /src/algebra/strap
parent331ff8fe93b6cee63593dcad6b7a9c235bac946d (diff)
downloadopen-axiom-f6f972eda48c04d11d8790ee24b038d8762ba34b.tar.gz
More cleanup
Diffstat (limited to 'src/algebra/strap')
-rw-r--r--src/algebra/strap/LIST.lsp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/algebra/strap/LIST.lsp b/src/algebra/strap/LIST.lsp
index d2431d27..c0e755de 100644
--- a/src/algebra/strap/LIST.lsp
+++ b/src/algebra/strap/LIST.lsp
@@ -3,17 +3,18 @@
(DECLAIM (FTYPE (FUNCTION (|%Shell|) |%List|) |LIST;nil;$;1|))
-(PUT '|LIST;nil;$;1| '|SPADreplace| '(XLAM NIL NIL))
+(PUT '|LIST;nil;$;1| '|SPADreplace| '(XLAM NIL |%nil|))
(DECLAIM (FTYPE (FUNCTION (|%List| |%Shell|) |%Boolean|)
|LIST;null;$B;2|))
-(PUT '|LIST;null;$B;2| '|SPADreplace| 'NULL)
+(PUT '|LIST;null;$B;2| '|SPADreplace|
+ '(XLAM (|l|) (|%peq| |l| |%nil|)))
(DECLAIM (FTYPE (FUNCTION (|%Thing| |%List| |%Shell|) |%List|)
|LIST;cons;S2$;3|))
-(PUT '|LIST;cons;S2$;3| '|SPADreplace| 'CONS)
+(PUT '|LIST;cons;S2$;3| '|SPADreplace| '|%makepair|)
(DECLAIM (FTYPE (FUNCTION (|%List| |%List| |%Shell|) |%List|)
|LIST;append;3$;4|))