Mercurial > emacs
diff lisp/replace.el @ 67426:eac49762e6b9
(replace-highlight): Change overlay priority from 1 to 1001.
| author | Juri Linkov <juri@jurta.org> |
|---|---|
| date | Fri, 09 Dec 2005 09:46:16 +0000 |
| parents | 805356939662 |
| children | 33258a660650 |
line wrap: on
line diff
--- a/lisp/replace.el Fri Dec 09 09:45:06 2005 +0000 +++ b/lisp/replace.el Fri Dec 09 09:46:16 2005 +0000 @@ -1710,7 +1710,7 @@ (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)
