summaryrefslogtreecommitdiff
path: root/lisp/cus-edit.el
diff options
context:
space:
mode:
authorJohn Paul Wallington <jpw@pobox.com>2006-01-09 23:14:26 +0000
committerJohn Paul Wallington <jpw@pobox.com>2006-01-09 23:14:26 +0000
commitee5137b3ae464f923074b9371b6d06408ecb236b (patch)
tree71626dc5f2e5961ee4fb18a66824c53259d7ba80 /lisp/cus-edit.el
parentffb5fc37ba982e3e0ae8bc0007cf0e38d1dd1676 (diff)
downloademacs-ee5137b3ae464f923074b9371b6d06408ecb236b.tar.gz
(custom-comment) <defface>: Add TTY definitions.
Diffstat (limited to 'lisp/cus-edit.el')
-rw-r--r--lisp/cus-edit.el13
1 files changed, 8 insertions, 5 deletions
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el
index b82510e0174..2928080ca4e 100644
--- a/lisp/cus-edit.el
+++ b/lisp/cus-edit.el
@@ -1,7 +1,7 @@
;;; cus-edit.el --- tools for customizing Emacs and Lisp packages
;;
;; Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004,
-;; 2005 Free Software Foundation, Inc.
+;; 2005, 2006 Free Software Foundation, Inc.
;;
;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
;; Maintainer: FSF
@@ -2266,14 +2266,17 @@ If INITIAL-STRING is non-nil, use that rather than \"Parent groups:\"."
;;; The `custom-comment' Widget.
;; like the editable field
-(defface custom-comment '((((class grayscale color)
+(defface custom-comment '((((type tty))
+ :background "yellow3"
+ :foreground "black")
+ (((class grayscale color)
(background light))
- (:background "gray85"))
+ :background "gray85")
(((class grayscale color)
(background dark))
- (:background "dim gray"))
+ :background "dim gray")
(t
- (:slant italic)))
+ :slant italic))
"Face used for comments on variables or faces"
:version "21.1"
:group 'custom-faces)