aboutsummaryrefslogtreecommitdiff
path: root/src/algebra/strap/ILIST.lsp
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2010-02-09 15:26:23 +0000
committerdos-reis <gdr@axiomatics.org>2010-02-09 15:26:23 +0000
commitd43aed3feda5c95f861ace2b76e9b693e9247f89 (patch)
tree4b5363375db7b5cc071a06ecd5d2c53172970f4d /src/algebra/strap/ILIST.lsp
parent76b3bd66c2f3402ce592d66173c201ef2a09915a (diff)
downloadopen-axiom-d43aed3feda5c95f861ace2b76e9b693e9247f89.tar.gz
* algebra/list.spad.pamphlet (IndexedList): Don't use NEQ.
Diffstat (limited to 'src/algebra/strap/ILIST.lsp')
-rw-r--r--src/algebra/strap/ILIST.lsp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/algebra/strap/ILIST.lsp b/src/algebra/strap/ILIST.lsp
index 397baaa5..2d183936 100644
--- a/src/algebra/strap/ILIST.lsp
+++ b/src/algebra/strap/ILIST.lsp
@@ -217,7 +217,7 @@
(SEQ (LETT |y| NIL |ILIST;coerce;$Of;21|)
(LETT |s| (SPADCALL |x| (|getShellEntry| $ 44))
|ILIST;coerce;$Of;21|)
- (SEQ G190 (COND ((NULL (NEQ |x| |s|)) (GO G191)))
+ (SEQ G190 (COND ((NULL (NOT (EQ |x| |s|))) (GO G191)))
(SEQ (LETT |y|
(CONS (SPADCALL (|SPADfirst| |x|)
(|getShellEntry| $ 45))
@@ -237,7 +237,8 @@
|ILIST;coerce;$Of;21|)
(SEQ G190
(COND
- ((NULL (NEQ |s| (CDR |x|))) (GO G191)))
+ ((NULL (NOT (EQ |s| (CDR |x|))))
+ (GO G191)))
(SEQ (LETT |x| (CDR |x|)
|ILIST;coerce;$Of;21|)
(EXIT