summaryrefslogtreecommitdiff
path: root/lisp/faces.el
diff options
context:
space:
mode:
authorAlexander Gramiak <agrambot@gmail.com>2017-08-12 10:12:36 +0300
committerEli Zaretskii <eliz@gnu.org>2017-08-12 10:12:36 +0300
commit84288cf4211a4490c0155d3c0022617b92294f49 (patch)
tree95ffa314ed27e5ee98f2150618b45e04a113a7c7 /lisp/faces.el
parent19d2b4a3e2eb900158f0e78864d971b44cc8ea89 (diff)
downloademacs-84288cf4211a4490c0155d3c0022617b92294f49.tar.gz
Add new face 'header-line-highlight'
* lisp/faces.el: Define the face. * lisp/emacs-lisp/tabulated-list.el (tabulated-list-init-header): * lisp/info.el (Info-fontify-node): Use the new face. * doc/emacs/display.texi (Standard Faces): * etc/NEWS: Document the new face. (Bug#28033)
Diffstat (limited to 'lisp/faces.el')
-rw-r--r--lisp/faces.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/faces.el b/lisp/faces.el
index 5ed11d11cef..01d94d7aae0 100644
--- a/lisp/faces.el
+++ b/lisp/faces.el
@@ -2628,6 +2628,11 @@ Use the face `mode-line-highlight' for features that can be selected."
:version "21.1"
:group 'basic-faces)
+(defface header-line-highlight '((t :inherit highlight))
+ "Basic header line face for highlighting."
+ :version "26.1"
+ :group 'basic-faces)
+
(defface vertical-border
'((((type tty)) :inherit mode-line-inactive))
"Face used for vertical window dividers on ttys."