1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 18:40:39 -08:00

Fix defface's with no customization data

* lisp/net/shr.el (shr-h4, shr-h5, shr-h6):
* lisp/cedet/semantic/decorate/include.el
(semantic-decoration-on-includes):
* lisp/progmodes/make-mode.el (makefile-shell):
* lisp/time.el (display-time-date-and-time):
* lisp/nxml/nxml-mode.el (nxml-text, nxml-delimiter)
(nxml-element-colon): Add face definitions (bug#64655).
This commit is contained in:
Eli Zaretskii 2023-07-20 19:25:43 +03:00
parent 65108998b1
commit e72afa9dbf
5 changed files with 14 additions and 10 deletions

View file

@ -151,15 +151,15 @@ 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-delimiter
nil
"Face used to highlight delimiters.
This is not used directly, but only via inheritance by other faces."
(defface nxml-text
'((t (:inherit default)))
"Face used to highlight text."
:group 'nxml-faces)
(defface nxml-text
nil
"Face used to highlight text."
(defface nxml-delimiter
'((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-processing-instruction-delimiter
@ -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)