aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2004-12-15 10:27:25 +0000
committerJuri Linkov2004-12-15 10:27:25 +0000
commita31a30b5bb7491d9083ecf018df6166af12a9918 (patch)
tree57b64d8879d7a4c84f8d9d031ad059051d7d4cb4
parent93e8fd61330394143dc422b70270ca62d8f59bee (diff)
downloademacs-a31a30b5bb7491d9083ecf018df6166af12a9918.tar.gz
emacs-a31a30b5bb7491d9083ecf018df6166af12a9918.zip
*** empty log message ***
-rw-r--r--etc/NEWS13
-rw-r--r--lisp/ChangeLog21
-rw-r--r--man/ChangeLog6
3 files changed, 34 insertions, 6 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 224082587c1..21895dd1d63 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1085,9 +1085,11 @@ All regular expression replacement commands now allow `\?' in the
1085replacement string to specify a position where the replacement string 1085replacement string to specify a position where the replacement string
1086can be edited for each replacement. 1086can be edited for each replacement.
1087 1087
1088** query-replace uses isearch highlighting with lazy highlighting 1088** query-replace uses isearch lazy highlighting when the new user option
1089when the user option `query-replace-highlight' is set to `isearch'. 1089`query-replace-lazy-highlight' is non-nil.
1090If it is t, it uses old query-replace highlighting method. 1090
1091** The current match in query-replace is highlighted in new face
1092`query-replace' which by default inherits from isearch face.
1091 1093
1092+++ 1094+++
1093** Emacs normally highlights mouse sensitive text whenever the mouse 1095** Emacs normally highlights mouse sensitive text whenever the mouse
@@ -1422,9 +1424,8 @@ previous mark, i.e. C-u C-SPC C-SPC C-SPC ... cycles through the
1422mark ring. Use C-u C-u C-SPC to set the mark immediately after a jump. 1424mark ring. Use C-u C-u C-SPC to set the mark immediately after a jump.
1423 1425
1424** Movement commands `beginning-of-buffer', `end-of-buffer', 1426** Movement commands `beginning-of-buffer', `end-of-buffer',
1425`beginning-of-defun', `end-of-defun' do not set the mark if the new 1427`beginning-of-defun', `end-of-defun' do not set the mark if the mark
1426option `inhibit-mark-movement' is non-nil, or if the mark is already 1428is already active in Transient Mark mode.
1427active in Transient Mark mode.
1428 1429
1429+++ 1430+++
1430** In the *Occur* buffer, `o' switches to it in another window, and 1431** In the *Occur* buffer, `o' switches to it in another window, and
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 535c48393f5..f647f1a456d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,24 @@
12004-12-15 Juri Linkov <juri@jurta.org>
2
3 * isearch.el (isearch-update): Test isearch-lazy-highlight
4 before calling isearch-lazy-highlight-new-loop.
5 (isearch-lazy-highlight-new-loop):
6 Don't test isearch-lazy-highlight.
7
8 * replace.el (perform-replace): Add isearch-case-fold-search.
9 Use delimited-flag for isearch-regexp.
10 Reset isearch-lazy-highlight-last-string to force lazy
11 highlighting when called from isearch mode.
12 (query-replace-highlight): Revert defcustom type to boolean.
13 (query-replace-lazy-highlight): New defcustom.
14 (query-replace): New face.
15 (perform-replace, replace-highlight, replace-dehighlight):
16 Test query-replace-lazy-highlight instead of special value
17 `isearch' of query-replace-highlight.
18 (replace-dehighlight): Don't call isearch-dehighlight.
19 (replace-highlight): Don't call isearch-highlight.
20 Use face `query-replace' unconditionally.
21
12004-12-14 Kim F. Storm <storm@cua.dk> 222004-12-14 Kim F. Storm <storm@cua.dk>
2 23
3 * simple.el (inhibit-mark-movement): Remove defvar. 24 * simple.el (inhibit-mark-movement): Remove defvar.
diff --git a/man/ChangeLog b/man/ChangeLog
index 7aa7b79e4ce..d4e6e7fbd20 100644
--- a/man/ChangeLog
+++ b/man/ChangeLog
@@ -1,3 +1,9 @@
12004-12-15 Juri Linkov <juri@jurta.org>
2
3 * mark.texi (Transient Mark, Mark Ring): M-< and other
4 movement commands don't set mark in Transient Mark mode
5 if mark is active.
6
12004-12-15 Jay Belanger <belanger@truman.edu> 72004-12-15 Jay Belanger <belanger@truman.edu>
2 8
3 * calc.texi: Consistently capitalized all mode names. 9 * calc.texi: Consistently capitalized all mode names.