# HG changeset patch # User Miles Bader # Date 1104986697 0 # Node ID 89c73b450bcc127212a2cc028023748f6c097394 # Parent 24b54016dd5179321f1d1874ba43621ccb44b11d Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-12 Remove "-face" suffix from lazy-highlight face name 2005-01-06 Miles Bader * lisp/isearch.el (lazy-highlight): Renamed from `lazy-highlight-face'. (isearch-lazy-highlight-face): Use new name. diff -r 24b54016dd51 -r 89c73b450bcc lisp/ChangeLog --- a/lisp/ChangeLog Thu Jan 06 03:58:33 2005 +0000 +++ b/lisp/ChangeLog Thu Jan 06 04:44:57 2005 +0000 @@ -1,3 +1,8 @@ +2005-01-06 Miles Bader + + * isearch.el (lazy-highlight): Renamed from `lazy-highlight-face'. + (isearch-lazy-highlight-face): Use new name. + 2005-01-05 Stefan Monnier * uniquify.el (uniquify-rationalize-file-buffer-names): diff -r 24b54016dd51 -r 89c73b450bcc lisp/isearch.el --- a/lisp/isearch.el Thu Jan 06 03:58:33 2005 +0000 +++ b/lisp/isearch.el Thu Jan 06 04:44:57 2005 +0000 @@ -242,7 +242,7 @@ (integer :tag "Some")) :group 'lazy-highlight) -(defface lazy-highlight-face +(defface lazy-highlight '((((class color) (min-colors 88) (background light)) (:background "paleturquoise")) (((class color) (min-colors 88) (background dark)) @@ -2264,7 +2264,7 @@ ;; When active, *every* match for the current search string is ;; highlighted: the current one using the normal isearch match color -;; and all the others using `isearch-lazy-highlight-face'. The extra +;; and all the others using `isearch-lazy-highlight'. The extra ;; highlighting makes it easier to anticipate where the cursor will ;; land each time you press C-s or C-r to repeat a pending search. ;; Highlighting of these additional matches happens in a deferred @@ -2305,7 +2305,7 @@ :group 'isearch-faces) (defvar isearch 'isearch) -(defvar isearch-lazy-highlight-face 'lazy-highlight-face) +(defvar isearch-lazy-highlight-face 'lazy-highlight) (defvar isearch-lazy-highlight-overlays nil) (defvar isearch-lazy-highlight-wrapped nil)