aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2004-11-20 22:09:16 +0000
committerRichard M. Stallman2004-11-20 22:09:16 +0000
commit9d00469fcad8a8e99cd65452a2db26fb2d96ed29 (patch)
treeb6cd381fded4f2e48c79eb3f6e07561a55caa5f7
parent4d19f455abd5293ce4a96a0e189203cd7766ecd1 (diff)
downloademacs-9d00469fcad8a8e99cd65452a2db26fb2d96ed29.tar.gz
emacs-9d00469fcad8a8e99cd65452a2db26fb2d96ed29.zip
*** empty log message ***
-rw-r--r--etc/NEWS4
-rw-r--r--lispref/ChangeLog3
-rw-r--r--src/ChangeLog3
3 files changed, 10 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 57cc9ace037..1fca6574057 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2336,6 +2336,10 @@ configuration files.
2336* Lisp Changes in Emacs 21.4 2336* Lisp Changes in Emacs 21.4
2337 2337
2338+++ 2338+++
2339** read-from-minibuffer now accepts an additional argument KEEP-ALL
2340saying to put all inputs in the history list, even empty ones.
2341
2342+++
2339** The new variable search-spaces-regexp controls how to search 2343** The new variable search-spaces-regexp controls how to search
2340for spaces in a regular expression. If it is non-nil, it should be a 2344for spaces in a regular expression. If it is non-nil, it should be a
2341regular expression, and any series of spaces stands for that regular 2345regular expression, and any series of spaces stands for that regular
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index 63d8e183a21..fa5ca38e4e2 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,5 +1,8 @@
12004-11-20 Richard M. Stallman <rms@gnu.org> 12004-11-20 Richard M. Stallman <rms@gnu.org>
2 2
3 * minibuf.texi (Text from Minibuffer): Document KEEP-ALL arg in
4 read-from-minibuffer.
5
3 * searching.texi (Regexp Search): Rename that to search-spaces-regexp. 6 * searching.texi (Regexp Search): Rename that to search-spaces-regexp.
4 7
52004-11-19 Richard M. Stallman <rms@gnu.org> 82004-11-19 Richard M. Stallman <rms@gnu.org>
diff --git a/src/ChangeLog b/src/ChangeLog
index 53f4cbcc67d..6d54dc29374 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,8 @@
12004-11-20 Richard M. Stallman <rms@gnu.org> 12004-11-20 Richard M. Stallman <rms@gnu.org>
2 2
3 * minibuf.c (read_minibuf): New arg KEEP_ALL. Callers changed.
4 (Fread_from_minibuffer): New ark KEEP_ALL. Callers changed.
5
3 * search.c (Vsearch_spaces_regexp): 6 * search.c (Vsearch_spaces_regexp):
4 Renamed from Vsearch_whitespace_regexp. All uses changed. 7 Renamed from Vsearch_whitespace_regexp. All uses changed.
5 8