diff options
| author | Juri Linkov | 2005-09-29 22:55:53 +0000 |
|---|---|---|
| committer | Juri Linkov | 2005-09-29 22:55:53 +0000 |
| commit | 92cc4a30314e628d70853e3a5df6c400f9dba813 (patch) | |
| tree | 0001fb6a8551487ee6f05e54a029b59d404ca2e5 | |
| parent | 51d44a3681a5d907b87e359046fefc7e8b03b039 (diff) | |
| download | emacs-92cc4a30314e628d70853e3a5df6c400f9dba813.tar.gz emacs-92cc4a30314e628d70853e3a5df6c400f9dba813.zip | |
(isearch, lazy-highlight): Add group `basic-faces'.
| -rw-r--r-- | lisp/isearch.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el index c474ea3b518..cdddd47cbaf 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el | |||
| @@ -219,7 +219,8 @@ Default value, nil, means edit the string instead." | |||
| 219 | (:background "magenta4" :foreground "cyan1")) | 219 | (:background "magenta4" :foreground "cyan1")) |
| 220 | (t (:inverse-video t))) | 220 | (t (:inverse-video t))) |
| 221 | "Face for highlighting Isearch matches." | 221 | "Face for highlighting Isearch matches." |
| 222 | :group 'isearch) | 222 | :group 'isearch |
| 223 | :group 'basic-faces) | ||
| 223 | (defvar isearch 'isearch) | 224 | (defvar isearch 'isearch) |
| 224 | 225 | ||
| 225 | (defcustom isearch-lazy-highlight t | 226 | (defcustom isearch-lazy-highlight t |
| @@ -289,7 +290,8 @@ A value of nil means highlight all matches." | |||
| 289 | (:background "turquoise3")) | 290 | (:background "turquoise3")) |
| 290 | (t (:underline t))) | 291 | (t (:underline t))) |
| 291 | "Face for lazy highlighting of matches other than the current one." | 292 | "Face for lazy highlighting of matches other than the current one." |
| 292 | :group 'lazy-highlight) | 293 | :group 'lazy-highlight |
| 294 | :group 'basic-faces) | ||
| 293 | (put 'isearch-lazy-highlight-face 'face-alias 'lazy-highlight) | 295 | (put 'isearch-lazy-highlight-face 'face-alias 'lazy-highlight) |
| 294 | (defvar lazy-highlight-face 'lazy-highlight) | 296 | (defvar lazy-highlight-face 'lazy-highlight) |
| 295 | (define-obsolete-variable-alias 'isearch-lazy-highlight-face | 297 | (define-obsolete-variable-alias 'isearch-lazy-highlight-face |