# HG changeset patch # User Richard M. Stallman # Date 1100988556 0 # Node ID 726c49e05ed9cd69349d22cbb7b0c8b072216f74 # Parent 0e8e74522f853cbe1c9e685f11116865a9008626 *** empty log message *** diff -r 0e8e74522f85 -r 726c49e05ed9 etc/NEWS --- a/etc/NEWS Sat Nov 20 22:08:39 2004 +0000 +++ b/etc/NEWS Sat Nov 20 22:09:16 2004 +0000 @@ -2336,6 +2336,10 @@ * 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 -r 0e8e74522f85 -r 726c49e05ed9 lispref/ChangeLog --- a/lispref/ChangeLog Sat Nov 20 22:08:39 2004 +0000 +++ b/lispref/ChangeLog Sat Nov 20 22:09:16 2004 +0000 @@ -1,5 +1,8 @@ 2004-11-20 Richard M. Stallman + * 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 diff -r 0e8e74522f85 -r 726c49e05ed9 src/ChangeLog --- a/src/ChangeLog Sat Nov 20 22:08:39 2004 +0000 +++ b/src/ChangeLog Sat Nov 20 22:09:16 2004 +0000 @@ -1,5 +1,8 @@ 2004-11-20 Richard M. Stallman + * 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.