From d43aed3feda5c95f861ace2b76e9b693e9247f89 Mon Sep 17 00:00:00 2001 From: dos-reis Date: Tue, 9 Feb 2010 15:26:23 +0000 Subject: * algebra/list.spad.pamphlet (IndexedList): Don't use NEQ. --- src/algebra/strap/ILIST.lsp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/algebra/strap/ILIST.lsp') 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 -- cgit v1.2.3