aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2004-12-16 07:19:20 +0000
committerJuri Linkov2004-12-16 07:19:20 +0000
commit8270a848c898e19a5f46eb2ea79b71645562e0cd (patch)
treeaa2cb9d1f544712080cfe9e1ef5fb131472a551f
parent5248b3e332d7ee1fdc9fbffe485d444d3014b1d9 (diff)
downloademacs-8270a848c898e19a5f46eb2ea79b71645562e0cd.tar.gz
emacs-8270a848c898e19a5f46eb2ea79b71645562e0cd.zip
(info-lookup-highlight-face): Change default from `highlight' to `match'.
-rw-r--r--lisp/ChangeLog15
-rw-r--r--lisp/info-look.el2
2 files changed, 16 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a086e276835..f86107456e3 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,18 @@
12004-12-15 Juri Linkov <juri@jurta.org>
2
3 * replace.el (match): New face.
4 (list-matching-lines-face): Change default from `bold' to `match'.
5
6 * progmodes/grep.el (grep-match-face): New defvar.
7 (grep-mode-font-lock-keywords): Use grep-match-face instead of
8 compilation-column-face to highlight grep matches.
9
10 * apropos.el (apropos-match-face): Change default from
11 `secondary-selection' to `match'.
12
13 * info-look.el (info-lookup-highlight-face): Change default from
14 `highlight' to `match'.
15
12004-12-15 Daniel Pfeiffer <occitan@esperanto.org> 162004-12-15 Daniel Pfeiffer <occitan@esperanto.org>
2 17
3 * progmodes/executable.el (executable-interpret): Eliminate 18 * progmodes/executable.el (executable-interpret): Eliminate
diff --git a/lisp/info-look.el b/lisp/info-look.el
index 388415ec8c1..bc886f0320c 100644
--- a/lisp/info-look.el
+++ b/lisp/info-look.el
@@ -47,7 +47,7 @@ Automatically becomes buffer local when set in any fashion.")
47 "Non-nil means pop up the Info buffer in another window." 47 "Non-nil means pop up the Info buffer in another window."
48 :group 'info-lookup :type 'boolean) 48 :group 'info-lookup :type 'boolean)
49 49
50(defcustom info-lookup-highlight-face 'highlight 50(defcustom info-lookup-highlight-face 'match
51 "Face for highlighting looked up help items. 51 "Face for highlighting looked up help items.
52Setting this variable to nil disables highlighting." 52Setting this variable to nil disables highlighting."
53 :group 'info-lookup :type 'face) 53 :group 'info-lookup :type 'face)