diff options
| -rw-r--r-- | etc/NEWS | 4 | ||||
| -rw-r--r-- | lispref/ChangeLog | 3 | ||||
| -rw-r--r-- | src/ChangeLog | 3 |
3 files changed, 10 insertions, 0 deletions
| @@ -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 | ||
| 2340 | saying 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 |
| 2340 | for spaces in a regular expression. If it is non-nil, it should be a | 2344 | for spaces in a regular expression. If it is non-nil, it should be a |
| 2341 | regular expression, and any series of spaces stands for that regular | 2345 | regular 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 @@ | |||
| 1 | 2004-11-20 Richard M. Stallman <rms@gnu.org> | 1 | 2004-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 | ||
| 5 | 2004-11-19 Richard M. Stallman <rms@gnu.org> | 8 | 2004-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 @@ | |||
| 1 | 2004-11-20 Richard M. Stallman <rms@gnu.org> | 1 | 2004-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 | ||