diff options
| author | John Paul Wallington | 2006-01-09 23:14:26 +0000 |
|---|---|---|
| committer | John Paul Wallington | 2006-01-09 23:14:26 +0000 |
| commit | ee5137b3ae464f923074b9371b6d06408ecb236b (patch) | |
| tree | 71626dc5f2e5961ee4fb18a66824c53259d7ba80 | |
| parent | ffb5fc37ba982e3e0ae8bc0007cf0e38d1dd1676 (diff) | |
| download | emacs-ee5137b3ae464f923074b9371b6d06408ecb236b.tar.gz emacs-ee5137b3ae464f923074b9371b6d06408ecb236b.zip | |
(custom-comment) <defface>: Add TTY definitions.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/cus-edit.el | 13 |
2 files changed, 12 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ed7e28326f9..1bc6039b327 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2006-01-09 John Paul Wallington <jpw@gnu.org> | ||
| 2 | |||
| 3 | * cus-edit.el (custom-comment) <defface>: Add TTY definitions. | ||
| 4 | |||
| 1 | 2006-01-09 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2006-01-09 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * reveal.el (reveal-open-new-overlays): New extracted fun. | 7 | * reveal.el (reveal-open-new-overlays): New extracted fun. |
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 @@ | |||
| 1 | ;;; cus-edit.el --- tools for customizing Emacs and Lisp packages | 1 | ;;; cus-edit.el --- tools for customizing Emacs and Lisp packages |
| 2 | ;; | 2 | ;; |
| 3 | ;; Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004, | 3 | ;; Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004, |
| 4 | ;; 2005 Free Software Foundation, Inc. | 4 | ;; 2005, 2006 Free Software Foundation, Inc. |
| 5 | ;; | 5 | ;; |
| 6 | ;; Author: Per Abrahamsen <abraham@dina.kvl.dk> | 6 | ;; Author: Per Abrahamsen <abraham@dina.kvl.dk> |
| 7 | ;; Maintainer: FSF | 7 | ;; Maintainer: FSF |
| @@ -2266,14 +2266,17 @@ If INITIAL-STRING is non-nil, use that rather than \"Parent groups:\"." | |||
| 2266 | ;;; The `custom-comment' Widget. | 2266 | ;;; The `custom-comment' Widget. |
| 2267 | 2267 | ||
| 2268 | ;; like the editable field | 2268 | ;; like the editable field |
| 2269 | (defface custom-comment '((((class grayscale color) | 2269 | (defface custom-comment '((((type tty)) |
| 2270 | :background "yellow3" | ||
| 2271 | :foreground "black") | ||
| 2272 | (((class grayscale color) | ||
| 2270 | (background light)) | 2273 | (background light)) |
| 2271 | (:background "gray85")) | 2274 | :background "gray85") |
| 2272 | (((class grayscale color) | 2275 | (((class grayscale color) |
| 2273 | (background dark)) | 2276 | (background dark)) |
| 2274 | (:background "dim gray")) | 2277 | :background "dim gray") |
| 2275 | (t | 2278 | (t |
| 2276 | (:slant italic))) | 2279 | :slant italic)) |
| 2277 | "Face used for comments on variables or faces" | 2280 | "Face used for comments on variables or faces" |
| 2278 | :version "21.1" | 2281 | :version "21.1" |
| 2279 | :group 'custom-faces) | 2282 | :group 'custom-faces) |