aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 57cc9ace03..1fca657405 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2336,6 +2336,10 @@ configuration files.
* Lisp Changes in Emacs 21.4
+++
+** read-from-minibuffer now accepts an additional argument KEEP-ALL
+saying to put all inputs in the history list, even empty ones.
+
++++
** The new variable search-spaces-regexp controls how to search
for spaces in a regular expression. If it is non-nil, it should be a
regular expression, and any series of spaces stands for that regular
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index 63d8e183a2..fa5ca38e4e 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,5 +1,8 @@
2004-11-20 Richard M. Stallman <[email protected]>
+ * minibuf.texi (Text from Minibuffer): Document KEEP-ALL arg in
+ read-from-minibuffer.
+
* searching.texi (Regexp Search): Rename that to search-spaces-regexp.
2004-11-19 Richard M. Stallman <[email protected]>
diff --git a/src/ChangeLog b/src/ChangeLog
index 53f4cbcc67..6d54dc2937 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,8 @@
2004-11-20 Richard M. Stallman <[email protected]>
+ * minibuf.c (read_minibuf): New arg KEEP_ALL. Callers changed.
+ (Fread_from_minibuffer): New ark KEEP_ALL. Callers changed.
+
* search.c (Vsearch_spaces_regexp):
Renamed from Vsearch_whitespace_regexp. All uses changed.