aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-07-27 15:51:12 +0000
committerGerd Moellmann2000-07-27 15:51:12 +0000
commit3ab82477c72d2f00012b0d07d0e08abbdf56b842 (patch)
tree378827073b8d1c7f65433621802a812783711163
parente517f19dd4e3896a7ba60fc5f330b7499891282b (diff)
downloademacs-3ab82477c72d2f00012b0d07d0e08abbdf56b842.tar.gz
emacs-3ab82477c72d2f00012b0d07d0e08abbdf56b842.zip
*** empty log message ***
-rw-r--r--etc/NEWS2
-rw-r--r--lisp/ChangeLog9
-rw-r--r--src/ChangeLog5
3 files changed, 14 insertions, 2 deletions
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.
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.
1326
1325** The meaning of the `:weakness WEAK' argument of make-hash-table 1327** The meaning of the `:weakness WEAK' argument of make-hash-table
1326has been changed. 1328has been changed.
1327 1329
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 99aec87f600..5c11b0569c9 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,13 @@
12000-07-27 Gerd Moellmann <gerd@gnu.org> 12000-07-27 Gerd Moellmann <gerd@gnu.org>
2 2
3 * midnight.el (clean-buffer-list-kill-never-regexps): Correctly
4 escape `*' in regexps.
5 (midnight-find): Reverse order of arguments in the funcall of
6 TEST.
7
8 * bindings.el (completion-ignored-extensions): Add `.la', `.lo',
9 and `.class'.
10
3 * play/meese.el: Add Commentary section. 11 * play/meese.el: Add Commentary section.
4 12
52000-07-27 Kenichi Handa <handa@etl.go.jp> 132000-07-27 Kenichi Handa <handa@etl.go.jp>
@@ -59,7 +67,6 @@
59 interpretation of the return value of compare-strings. 67 interpretation of the return value of compare-strings.
60 68
612000-07-26 Gerd Moellmann <gerd@gnu.org> 692000-07-26 Gerd Moellmann <gerd@gnu.org>
62>>>>>>> 1.883
63 70
64 * isearch.el (isearch-resume): New function. 71 * isearch.el (isearch-resume): New function.
65 (isearch-done): Add something to command-history to resume 72 (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 @@
13 13
142000-07-27 Gerd Moellmann <gerd@gnu.org> 142000-07-27 Gerd Moellmann <gerd@gnu.org>
15 15
16 * fns.c (Fdelete): Make it work on vectors and strings in addition
17 to lists.
18
16 * fns.c (Qkey_or_value, Qkey_and_value): New variables. 19 * fns.c (Qkey_or_value, Qkey_and_value): New variables.
17 (syms_of_fns): Initialize new variables. 20 (syms_of_fns): Initialize new variables.
18 (sweep_weak_table): Handle weakness `key-or-value' and 21 (sweep_weak_table): Handle weakness `key-or-value' and
@@ -57,7 +60,7 @@
572000-07-26 Sam Steingold <sds@gnu.org> 602000-07-26 Sam Steingold <sds@gnu.org>
58 61
59 * editfns.c (lisp_time_argument): Added third argument `usec'. 62 * editfns.c (lisp_time_argument): Added third argument `usec'.
60 (Ffloat_time): new built-in Lisp function. 63 (Ffloat_time): New built-in Lisp function.
61 64
622000-07-26 Gerd Moellmann <gerd@gnu.org> 652000-07-26 Gerd Moellmann <gerd@gnu.org>
63 66