summaryrefslogtreecommitdiff
path: root/lisp/replace.el
diff options
context:
space:
mode:
authorJuri Linkov <juri@jurta.org>2005-12-09 09:46:16 +0000
committerJuri Linkov <juri@jurta.org>2005-12-09 09:46:16 +0000
commitd2efc5f72c0d896fe0fc9c7fabd839f0dbbb1c14 (patch)
treed9083a5860d994ce9684d6440e1e447565e8b032 /lisp/replace.el
parent2a97d64c6d3b79f3882b17a7cbcb42be92e359e6 (diff)
downloademacs-d2efc5f72c0d896fe0fc9c7fabd839f0dbbb1c14.tar.gz
(replace-highlight): Change overlay priority from 1 to 1001.
Diffstat (limited to 'lisp/replace.el')
-rw-r--r--lisp/replace.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/replace.el b/lisp/replace.el
index fbfa1be09c2..8229eda85a4 100644
--- a/lisp/replace.el
+++ b/lisp/replace.el
@@ -1710,7 +1710,7 @@ make, or the user didn't cancel the call."
(if replace-overlay
(move-overlay replace-overlay match-beg match-end (current-buffer))
(setq replace-overlay (make-overlay match-beg match-end))
- (overlay-put replace-overlay 'priority 1) ;higher than lazy overlays
+ (overlay-put replace-overlay 'priority 1001) ;higher than lazy overlays
(overlay-put replace-overlay 'face 'query-replace)))
(if query-replace-lazy-highlight
(let ((isearch-string string)