summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lisp/cedet/semantic/decorate/include.el2
-rw-r--r--lisp/net/shr.el3
-rw-r--r--lisp/nxml/nxml-mode.el14
-rw-r--r--lisp/progmodes/make-mode.el2
-rw-r--r--lisp/time.el1
5 files changed, 13 insertions, 9 deletions
diff --git a/lisp/cedet/semantic/decorate/include.el b/lisp/cedet/semantic/decorate/include.el
index c83de66ef0c..96bf8cec3b2 100644
--- a/lisp/cedet/semantic/decorate/include.el
+++ b/lisp/cedet/semantic/decorate/include.el
@@ -48,7 +48,7 @@
;;; Includes that are in a happy state!
;;
(defface semantic-decoration-on-includes
- nil
+ '((t (:inherit default)))
"Overlay Face used on includes that are not in some other state.
Used by the decoration style: `semantic-decoration-on-includes'."
:group 'semantic-faces)
diff --git a/lisp/net/shr.el b/lisp/net/shr.el
index 9b19a1b3980..0daeafe13ca 100644
--- a/lisp/net/shr.el
+++ b/lisp/net/shr.el
@@ -217,14 +217,17 @@ temporarily blinks with this face."
:version "28.1")
(defface shr-h4 nil
+ '((t (:inherit default)))
"Face for <h4> elements."
:version "28.1")
(defface shr-h5 nil
+ '((t (:inherit default)))
"Face for <h5> elements."
:version "28.1")
(defface shr-h6 nil
+ '((t (:inherit default)))
"Face for <h6> elements."
:version "28.1")
diff --git a/lisp/nxml/nxml-mode.el b/lisp/nxml/nxml-mode.el
index 3869d0327fd..67d136b5a66 100644
--- a/lisp/nxml/nxml-mode.el
+++ b/lisp/nxml/nxml-mode.el
@@ -151,17 +151,17 @@ This is not used directly, but only via inheritance by other faces."
This is not used directly, but only via inheritance by other faces."
:group 'nxml-faces)
+(defface nxml-text
+ '((t (:inherit default)))
+ "Face used to highlight text."
+ :group 'nxml-faces)
+
(defface nxml-delimiter
- nil
+ '((t (:inherit nxml-text)))
"Face used to highlight delimiters.
This is not used directly, but only via inheritance by other faces."
:group 'nxml-faces)
-(defface nxml-text
- nil
- "Face used to highlight text."
- :group 'nxml-faces)
-
(defface nxml-processing-instruction-delimiter
'((t (:inherit nxml-delimiter)))
"Face used for the delimiters of processing instructions, i.e., <? and ?>."
@@ -230,7 +230,7 @@ This includes the `x' in hex references."
:group 'nxml-faces)
(defface nxml-element-colon
- nil
+ '((t (:inherit nxml-delimiter)))
"Face used for the colon in element names."
:group 'nxml-faces)
diff --git a/lisp/progmodes/make-mode.el b/lisp/progmodes/make-mode.el
index 5ea03b9e852..308ba69cb9a 100644
--- a/lisp/progmodes/make-mode.el
+++ b/lisp/progmodes/make-mode.el
@@ -105,7 +105,7 @@
:version "22.1")
(defface makefile-shell
- ()
+ '((t (:inherit default)))
;;'((((class color) (min-colors 88) (background light)) (:background "seashell1"))
;; (((class color) (min-colors 88) (background dark)) (:background "seashell4")))
"Face to use for additionally highlighting Shell commands in Font-Lock mode."
diff --git a/lisp/time.el b/lisp/time.el
index 522bec46ac6..0184f96fcc2 100644
--- a/lisp/time.el
+++ b/lisp/time.el
@@ -141,6 +141,7 @@ make the mail indicator stand out on a color display."
(defface display-time-date-and-time nil
"Face for `display-time-format'."
+ '((t (:inherit mode-line)))
:group 'mode-line-faces
:version "30.1")