Mercurial > emacs
comparison etc/NEWS @ 30516:148c11ee6b89
*** empty log message ***
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Thu, 27 Jul 2000 20:16:08 +0000 |
parents | 2ac427297d38 |
children | ba9bd1bf0ef8 |
comparison
equal
deleted
inserted
replaced
30515:6165183bc490 | 30516:148c11ee6b89 |
---|---|
1320 | 1320 |
1321 | 1321 |
1322 * Lisp changes made after edition 2.6 of the Emacs Lisp Manual, | 1322 * Lisp changes made after edition 2.6 of the Emacs Lisp Manual, |
1323 (Display-related features are described in a page of their own below.) | 1323 (Display-related features are described in a page of their own below.) |
1324 | 1324 |
1325 ** The function `delete' now also works on vectors and strings. | 1325 ** Two new functions for removing elements from lists/sequences |
1326 were added | |
1327 | |
1328 - Function: remove ELT SEQ | |
1329 | |
1330 Return a copy of SEQ with all occurences of ELT removed. SEQ must be | |
1331 a list, vector, or string. The comparison is done with `equal'. | |
1332 | |
1333 - Function: remq ELT LIST | |
1334 | |
1335 Return a copy of LIST with all occurences of ELT removed. The | |
1336 comparison is done with `eq'. | |
1337 | |
1338 ** The function `delete' now also works with vectors and strings. | |
1326 | 1339 |
1327 ** The meaning of the `:weakness WEAK' argument of make-hash-table | 1340 ** The meaning of the `:weakness WEAK' argument of make-hash-table |
1328 has been changed. | 1341 has been changed. |
1329 | 1342 |
1330 ** Function `aset' stores any multibyte character in any string | 1343 ** Function `aset' stores any multibyte character in any string |