aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)