aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2004-11-20 14:18:59 +0000
committerRichard M. Stallman2004-11-20 14:18:59 +0000
commitdedbac8923bb0c7beb4f3fe33712f800a76dd175 (patch)
treef9f866350978b58e31499450494ac720efdcf49e
parent78b9dd307a925f5a3c38745c82befbed9bfe694a (diff)
downloademacs-dedbac8923bb0c7beb4f3fe33712f800a76dd175.tar.gz
emacs-dedbac8923bb0c7beb4f3fe33712f800a76dd175.zip
*** empty log message ***
-rw-r--r--etc/NEWS18
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lispref/ChangeLog4
-rw-r--r--src/ChangeLog5
4 files changed, 22 insertions, 9 deletions
diff --git a/etc/NEWS b/etc/NEWS
index aa8cbe932a3..57cc9ace037 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -98,15 +98,6 @@ types any more. Add -DUSE_LISP_UNION_TYPE if you want union types.
98 98
99* Changes in Emacs 21.4 99* Changes in Emacs 21.4
100 100
101+++
102** The new variable search-whitespace-regexp controls how to search
103for spaces in a regular expression. If it is non-nil, it should be a
104regular expression, and any series of spaces stands for that regular
105expression. If it is nil, spaces stand for themselves.
106
107Spaces inside of constructs such as [..] and *, +, ? are never
108replaced with search-whitespace-regexp.
109
110** line-move-ignore-invisible now defaults to t. 101** line-move-ignore-invisible now defaults to t.
111 102
112** In Outline mode, hide-body no longer hides lines at the top 103** In Outline mode, hide-body no longer hides lines at the top
@@ -2344,6 +2335,15 @@ configuration files.
2344 2335
2345* Lisp Changes in Emacs 21.4 2336* Lisp Changes in Emacs 21.4
2346 2337
2338+++
2339** 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
2341regular expression, and any series of spaces stands for that regular
2342expression. If it is nil, spaces stand for themselves.
2343
2344Spaces inside of constructs such as [..] and *, +, ? are never
2345replaced with search-spaces-regexp.
2346
2347--- 2347---
2348** list-buffers-noselect now takes an additional argument, BUFFER-LIST. 2348** list-buffers-noselect now takes an additional argument, BUFFER-LIST.
2349If it is non-nil, it specifies which buffers to list. 2349If it is non-nil, it specifies which buffers to list.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 62497ac2fdd..5f6323b9e7b 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12004-11-20 Richard M. Stallman <rms@gnu.org>
2
3 * info.el (Info-search): Fix previous change.
4
12004-11-20 Thien-Thi Nguyen <ttn@gnu.org> 52004-11-20 Thien-Thi Nguyen <ttn@gnu.org>
2 6
3 * Makefile.in (recompile): Revert 2004-11-19 change. 7 * Makefile.in (recompile): Revert 2004-11-19 change.
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index 295b8317534..63d8e183a21 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,7 @@
12004-11-20 Richard M. Stallman <rms@gnu.org>
2
3 * searching.texi (Regexp Search): Rename that to search-spaces-regexp.
4
12004-11-19 Richard M. Stallman <rms@gnu.org> 52004-11-19 Richard M. Stallman <rms@gnu.org>
2 6
3 * searching.texi (Regexp Search): Add search-whitespace-regexp. 7 * searching.texi (Regexp Search): Add search-whitespace-regexp.
diff --git a/src/ChangeLog b/src/ChangeLog
index 51b77969319..53f4cbcc67d 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12004-11-20 Richard M. Stallman <rms@gnu.org>
2
3 * search.c (Vsearch_spaces_regexp):
4 Renamed from Vsearch_whitespace_regexp. All uses changed.
5
12004-11-20 Thien-Thi Nguyen <ttn@gnu.org> 62004-11-20 Thien-Thi Nguyen <ttn@gnu.org>
2 7
3 * eval.c (init_eval_once): Increase `max_specpdl_size' to 650. 8 * eval.c (init_eval_once): Increase `max_specpdl_size' to 650.