1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-27 10:54:40 +00:00

(mode-line, header-line, tool-bar, ): Add :version.

(highlight, secondary-selection): Add :group.
(trailing-whitespace): Add :group, :version.
This commit is contained in:
Dave Love 1999-09-13 13:59:58 +00:00
parent a89a9d34dc
commit a4391cf101

View File

@ -1358,6 +1358,7 @@ created."
(t
(:inverse-video t)))
"Basic mode line face."
:version "21.1"
:group 'basic-faces)
;; Make `modeline' an alias for `mode-line', for compatibility.
@ -1369,6 +1370,7 @@ created."
(t
(:inverse-video t)))
"Basic header-line face."
:version "21.1"
:group 'basic-faces)
@ -1380,6 +1382,7 @@ created."
(t
()))
"Basic tool-bar face."
:version "21.1"
:group 'basic-faces)
@ -1459,7 +1462,8 @@ created."
(((class color) (background dark))
(:background "darkolivegreen"))
(t (:inverse-video t)))
"Basic face for highlighting.")
"Basic face for highlighting."
:group 'basic-faces)
(defface secondary-selection
@ -1470,7 +1474,8 @@ created."
(((class color) (background dark))
(:background "darkslateblue"))
(t (:inverse-video t)))
"Basic face for displaying the secondary selection.")
"Basic face for displaying the secondary selection."
:group 'basic-faces)
(defface fixed-pitch '((t (:family "courier*")))
@ -1489,7 +1494,9 @@ created."
(((class color) (background dark))
(:background "red"))
(t (:inverse-video t)))
"Basic face for highlighting trailing whitespace.")
"Basic face for highlighting trailing whitespace."
:version "21.1"
:group 'basic-faces)