diff options
| author | Richard M. Stallman | 2004-11-20 14:18:59 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2004-11-20 14:18:59 +0000 |
| commit | dedbac8923bb0c7beb4f3fe33712f800a76dd175 (patch) | |
| tree | f9f866350978b58e31499450494ac720efdcf49e | |
| parent | 78b9dd307a925f5a3c38745c82befbed9bfe694a (diff) | |
| download | emacs-dedbac8923bb0c7beb4f3fe33712f800a76dd175.tar.gz emacs-dedbac8923bb0c7beb4f3fe33712f800a76dd175.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 18 | ||||
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | src/ChangeLog | 5 |
4 files changed, 22 insertions, 9 deletions
| @@ -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 | ||
| 103 | for spaces in a regular expression. If it is non-nil, it should be a | ||
| 104 | regular expression, and any series of spaces stands for that regular | ||
| 105 | expression. If it is nil, spaces stand for themselves. | ||
| 106 | |||
| 107 | Spaces inside of constructs such as [..] and *, +, ? are never | ||
| 108 | replaced 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 | ||
| 2340 | 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 | ||
| 2342 | expression. If it is nil, spaces stand for themselves. | ||
| 2343 | |||
| 2344 | Spaces inside of constructs such as [..] and *, +, ? are never | ||
| 2345 | replaced 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. |
| 2349 | If it is non-nil, it specifies which buffers to list. | 2349 | If 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 @@ | |||
| 1 | 2004-11-20 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * info.el (Info-search): Fix previous change. | ||
| 4 | |||
| 1 | 2004-11-20 Thien-Thi Nguyen <ttn@gnu.org> | 5 | 2004-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 @@ | |||
| 1 | 2004-11-20 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * searching.texi (Regexp Search): Rename that to search-spaces-regexp. | ||
| 4 | |||
| 1 | 2004-11-19 Richard M. Stallman <rms@gnu.org> | 5 | 2004-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 @@ | |||
| 1 | 2004-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 | |||
| 1 | 2004-11-20 Thien-Thi Nguyen <ttn@gnu.org> | 6 | 2004-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. |