diff options
| author | Eli Zaretskii | 2001-10-26 14:23:10 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2001-10-26 14:23:10 +0000 |
| commit | f2e241895114e55516d0b0684bc31d4567d5f0ce (patch) | |
| tree | 6fedd27b3fd04a9148c8697740cdbc155d91277e | |
| parent | 187cd25bb00b7d0a1cbd76556b7a87b1eca3039f (diff) | |
| download | emacs-f2e241895114e55516d0b0684bc31d4567d5f0ce.tar.gz emacs-f2e241895114e55516d0b0684bc31d4567d5f0ce.zip | |
(button): Special face definition for MS-DOS terminals.
| -rw-r--r-- | lisp/button.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/button.el b/lisp/button.el index 998d6390651..aa9ade82ed1 100644 --- a/lisp/button.el +++ b/lisp/button.el | |||
| @@ -50,7 +50,9 @@ | |||
| 50 | 50 | ||
| 51 | ;; Globals | 51 | ;; Globals |
| 52 | 52 | ||
| 53 | (defface button '((t :underline t)) | 53 | (defface button '((((type pc) (class color)) |
| 54 | (:foreground "lightblue")) | ||
| 55 | (t :underline t)) | ||
| 54 | "Default face used for buttons.") | 56 | "Default face used for buttons.") |
| 55 | 57 | ||
| 56 | ;;;###autoload | 58 | ;;;###autoload |