summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>2005-01-06 04:44:57 +0000
committerMiles Bader <miles@gnu.org>2005-01-06 04:44:57 +0000
commite3cde0c787627ef741bb02669132b9953d05b3cd (patch)
treea18ca7b1f882123e78cb0b40187e3a4f4f107e47
parentf1a262ed1464b9f0c5503ca27e57e5d7f0efba50 (diff)
downloademacs-e3cde0c787627ef741bb02669132b9953d05b3cd.tar.gz
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 <miles@gnu.org> * lisp/isearch.el (lazy-highlight): Renamed from `lazy-highlight-face'. (isearch-lazy-highlight-face): Use new name.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/isearch.el6
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 0583c16fcd4..6647463a81c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2005-01-06 Miles Bader <miles@gnu.org>
+
+ * isearch.el (lazy-highlight): Renamed from `lazy-highlight-face'.
+ (isearch-lazy-highlight-face): Use new name.
+
2005-01-05 Stefan Monnier <monnier@iro.umontreal.ca>
* uniquify.el (uniquify-rationalize-file-buffer-names):
diff --git a/lisp/isearch.el b/lisp/isearch.el
index 8f2875d6726..3a7ca9c5576 100644
--- a/lisp/isearch.el
+++ b/lisp/isearch.el
@@ -242,7 +242,7 @@ A value of nil means highlight all matches."
(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 @@ since they have special meaning in a regexp."
;; 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 @@ since they have special meaning in a regexp."
: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)