# HG changeset patch # User Richard M. Stallman # Date 1100960339 0 # Node ID b44e06d9996ca2b02256755347c3dbc3b4711596 # Parent f6adc85f85101c785c7412428c00d62ca8b6ffbf *** empty log message *** diff -r f6adc85f8510 -r b44e06d9996c etc/NEWS --- a/etc/NEWS Sat Nov 20 14:09:10 2004 +0000 +++ b/etc/NEWS Sat Nov 20 14:18:59 2004 +0000 @@ -98,15 +98,6 @@ * Changes in Emacs 21.4 -+++ -** The new variable search-whitespace-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 -expression. If it is nil, spaces stand for themselves. - -Spaces inside of constructs such as [..] and *, +, ? are never -replaced with search-whitespace-regexp. - ** line-move-ignore-invisible now defaults to t. ** In Outline mode, hide-body no longer hides lines at the top @@ -2344,6 +2335,15 @@ * Lisp Changes in Emacs 21.4 ++++ +** 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 +expression. If it is nil, spaces stand for themselves. + +Spaces inside of constructs such as [..] and *, +, ? are never +replaced with search-spaces-regexp. + --- ** list-buffers-noselect now takes an additional argument, BUFFER-LIST. If it is non-nil, it specifies which buffers to list. diff -r f6adc85f8510 -r b44e06d9996c lisp/ChangeLog --- a/lisp/ChangeLog Sat Nov 20 14:09:10 2004 +0000 +++ b/lisp/ChangeLog Sat Nov 20 14:18:59 2004 +0000 @@ -1,3 +1,7 @@ +2004-11-20 Richard M. Stallman + + * info.el (Info-search): Fix previous change. + 2004-11-20 Thien-Thi Nguyen * Makefile.in (recompile): Revert 2004-11-19 change. diff -r f6adc85f8510 -r b44e06d9996c lispref/ChangeLog --- a/lispref/ChangeLog Sat Nov 20 14:09:10 2004 +0000 +++ b/lispref/ChangeLog Sat Nov 20 14:18:59 2004 +0000 @@ -1,3 +1,7 @@ +2004-11-20 Richard M. Stallman + + * searching.texi (Regexp Search): Rename that to search-spaces-regexp. + 2004-11-19 Richard M. Stallman * searching.texi (Regexp Search): Add search-whitespace-regexp. diff -r f6adc85f8510 -r b44e06d9996c src/ChangeLog --- a/src/ChangeLog Sat Nov 20 14:09:10 2004 +0000 +++ b/src/ChangeLog Sat Nov 20 14:18:59 2004 +0000 @@ -1,3 +1,8 @@ +2004-11-20 Richard M. Stallman + + * search.c (Vsearch_spaces_regexp): + Renamed from Vsearch_whitespace_regexp. All uses changed. + 2004-11-20 Thien-Thi Nguyen * eval.c (init_eval_once): Increase `max_specpdl_size' to 650.