[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Delete bug
- To: info-mcl@cambridge.apple.com
- Subject: Delete bug
- From: jamesj@bert.cs.byu.edu (JAMES JEREMIAH WAYNE )
- Date: Thu, 26 Sep 91 09:03:48 -0600
First, I lost the address to send bug reports to. Can somebody repost it
please? Second, there is a bug in the delete function. It works properly if
any item in a sequence is deleted except for the first item. In that case, it
acts just like remove (i.e., it non-destructively modifies the sequence). For
example:
? (setq x '(13 5 7 16 9))
(13 5 7 16 9)
? (delete 5 x)
(13 7 16 9)
? x
(13 7 16 9)
? (delete 13 x)
(7 16 9)
? x
(13 7 16 9)
By the way, I am running MCL 2.0b1p3 on a MacII under System 6.0.3.
Jerry James
jamesj@bert.cs.byu.edu
- Follow-Ups:
- Delete bug
- From: Peter Szolovits <psz@lcs.mit.edu>