aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love1999-09-13 13:59:58 +0000
committerDave Love1999-09-13 13:59:58 +0000
commita4391cf10104fdf17a9ae69e4d9ecd22271c1490 (patch)
tree7cb80e09da6ca1f45cda0f49051cfa1598231bae
parenta89a9d34dcbc946a137ed30e5666bb3ab49859e9 (diff)
downloademacs-a4391cf10104fdf17a9ae69e4d9ecd22271c1490.tar.gz
emacs-a4391cf10104fdf17a9ae69e4d9ecd22271c1490.zip
(mode-line, header-line, tool-bar, ): Add :version.
(highlight, secondary-selection): Add :group. (trailing-whitespace): Add :group, :version.
-rw-r--r--lisp/faces.el13
1 files changed, 10 insertions, 3 deletions
diff --git a/lisp/faces.el b/lisp/faces.el
index bbf037aabac..2993214d795 100644
--- a/lisp/faces.el
+++ b/lisp/faces.el
@@ -1358,6 +1358,7 @@ created."
1358 (t 1358 (t
1359 (:inverse-video t))) 1359 (:inverse-video t)))
1360 "Basic mode line face." 1360 "Basic mode line face."
1361 :version "21.1"
1361 :group 'basic-faces) 1362 :group 'basic-faces)
1362 1363
1363;; Make `modeline' an alias for `mode-line', for compatibility. 1364;; Make `modeline' an alias for `mode-line', for compatibility.
@@ -1369,6 +1370,7 @@ created."
1369 (t 1370 (t
1370 (:inverse-video t))) 1371 (:inverse-video t)))
1371 "Basic header-line face." 1372 "Basic header-line face."
1373 :version "21.1"
1372 :group 'basic-faces) 1374 :group 'basic-faces)
1373 1375
1374 1376
@@ -1380,6 +1382,7 @@ created."
1380 (t 1382 (t
1381 ())) 1383 ()))
1382 "Basic tool-bar face." 1384 "Basic tool-bar face."
1385 :version "21.1"
1383 :group 'basic-faces) 1386 :group 'basic-faces)
1384 1387
1385 1388
@@ -1459,7 +1462,8 @@ created."
1459 (((class color) (background dark)) 1462 (((class color) (background dark))
1460 (:background "darkolivegreen")) 1463 (:background "darkolivegreen"))
1461 (t (:inverse-video t))) 1464 (t (:inverse-video t)))
1462 "Basic face for highlighting.") 1465 "Basic face for highlighting."
1466 :group 'basic-faces)
1463 1467
1464 1468
1465(defface secondary-selection 1469(defface secondary-selection
@@ -1470,7 +1474,8 @@ created."
1470 (((class color) (background dark)) 1474 (((class color) (background dark))
1471 (:background "darkslateblue")) 1475 (:background "darkslateblue"))
1472 (t (:inverse-video t))) 1476 (t (:inverse-video t)))
1473 "Basic face for displaying the secondary selection.") 1477 "Basic face for displaying the secondary selection."
1478 :group 'basic-faces)
1474 1479
1475 1480
1476(defface fixed-pitch '((t (:family "courier*"))) 1481(defface fixed-pitch '((t (:family "courier*")))
@@ -1489,7 +1494,9 @@ created."
1489 (((class color) (background dark)) 1494 (((class color) (background dark))
1490 (:background "red")) 1495 (:background "red"))
1491 (t (:inverse-video t))) 1496 (t (:inverse-video t)))
1492 "Basic face for highlighting trailing whitespace.") 1497 "Basic face for highlighting trailing whitespace."
1498 :version "21.1"
1499 :group 'basic-faces)
1493 1500
1494 1501
1495 1502