diff options
| author | Lars Ingebrigtsen | 2016-02-23 13:31:25 +1100 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2016-02-23 13:31:32 +1100 |
| commit | 17dd3fb4a52e78c57308b795e41e8c9f50a9c5cc (patch) | |
| tree | 3ba1e9fe2d8f94c011d268b61e25602ef8076d6a | |
| parent | c1ec7434c38a8ee59e7ce895fbfd317e133ad40e (diff) | |
| download | emacs-17dd3fb4a52e78c57308b795e41e8c9f50a9c5cc.tar.gz emacs-17dd3fb4a52e78c57308b795e41e8c9f50a9c5cc.zip | |
Add `isearch' to `basic-faces'
* doc/lispref/display.texi (Basic Faces): Mention the isearch
and lazy-highlight faces.
* lisp/replace.el (match): Add `isearch' to the `basic-faces'
group, too (bug#22760).
| -rw-r--r-- | doc/lispref/display.texi | 6 | ||||
| -rw-r--r-- | lisp/replace.el | 1 |
2 files changed, 6 insertions, 1 deletions
diff --git a/doc/lispref/display.texi b/doc/lispref/display.texi index 323895927a9..e4aff43ccba 100644 --- a/doc/lispref/display.texi +++ b/doc/lispref/display.texi | |||
| @@ -3034,7 +3034,11 @@ it is commonly assigned to the @code{mouse-face} property for cursor | |||
| 3034 | highlighting (@pxref{Special Properties}). | 3034 | highlighting (@pxref{Special Properties}). |
| 3035 | 3035 | ||
| 3036 | @item match | 3036 | @item match |
| 3037 | For text matching a search command. | 3037 | @itemx isearch |
| 3038 | @itemx lazy-highlight | ||
| 3039 | For text matching (respectively) permanent search matches, interactive | ||
| 3040 | search matches, and lazy highlighting other matches than the current | ||
| 3041 | interactive one. | ||
| 3038 | 3042 | ||
| 3039 | @item error | 3043 | @item error |
| 3040 | @itemx warning | 3044 | @itemx warning |
diff --git a/lisp/replace.el b/lisp/replace.el index 488eff7928a..2c3aa9b0885 100644 --- a/lisp/replace.el +++ b/lisp/replace.el | |||
| @@ -1268,6 +1268,7 @@ Compatibility function for \\[next-error] invocations." | |||
| 1268 | (t :background "gray")) | 1268 | (t :background "gray")) |
| 1269 | "Face used to highlight matches permanently." | 1269 | "Face used to highlight matches permanently." |
| 1270 | :group 'matching | 1270 | :group 'matching |
| 1271 | :group 'basic-faces | ||
| 1271 | :version "22.1") | 1272 | :version "22.1") |
| 1272 | 1273 | ||
| 1273 | (defcustom list-matching-lines-default-context-lines 0 | 1274 | (defcustom list-matching-lines-default-context-lines 0 |