From: Gerd Moellmann Date: Thu, 27 Jul 2000 15:51:12 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: emacs-pretest-21.0.90~2561 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3ab82477c72d2f00012b0d07d0e08abbdf56b842;p=emacs.git *** empty log message *** --- diff --git a/etc/NEWS b/etc/NEWS index 2fc9422d4a6..52692f67bbf 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -1322,6 +1322,8 @@ functionality with aliases for the mldrag functions. * Lisp changes made after edition 2.6 of the Emacs Lisp Manual, (Display-related features are described in a page of their own below.) +** The function `delete' now also works on vectors and strings. + ** The meaning of the `:weakness WEAK' argument of make-hash-table has been changed. diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 99aec87f600..5c11b0569c9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,13 @@ 2000-07-27 Gerd Moellmann + * midnight.el (clean-buffer-list-kill-never-regexps): Correctly + escape `*' in regexps. + (midnight-find): Reverse order of arguments in the funcall of + TEST. + + * bindings.el (completion-ignored-extensions): Add `.la', `.lo', + and `.class'. + * play/meese.el: Add Commentary section. 2000-07-27 Kenichi Handa @@ -59,7 +67,6 @@ interpretation of the return value of compare-strings. 2000-07-26 Gerd Moellmann ->>>>>>> 1.883 * isearch.el (isearch-resume): New function. (isearch-done): Add something to command-history to resume diff --git a/src/ChangeLog b/src/ChangeLog index e2e4422fedd..7b9bcbbb4f6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -13,6 +13,9 @@ 2000-07-27 Gerd Moellmann + * fns.c (Fdelete): Make it work on vectors and strings in addition + to lists. + * fns.c (Qkey_or_value, Qkey_and_value): New variables. (syms_of_fns): Initialize new variables. (sweep_weak_table): Handle weakness `key-or-value' and @@ -57,7 +60,7 @@ 2000-07-26 Sam Steingold * editfns.c (lisp_time_argument): Added third argument `usec'. - (Ffloat_time): new built-in Lisp function. + (Ffloat_time): New built-in Lisp function. 2000-07-26 Gerd Moellmann