summaryrefslogtreecommitdiff
path: root/lisp/button.el
diff options
context:
space:
mode:
authorNick Roberts <nickrob@snap.net.nz>2007-04-23 03:32:12 +0000
committerNick Roberts <nickrob@snap.net.nz>2007-04-23 03:32:12 +0000
commitab996cceae342fd13ef3c7c0c93b9ed45dae2df6 (patch)
tree25594a6699a53ce19276e73cf8282f82d8194fc8 /lisp/button.el
parentfc6bcfa4124772228e5120d7a974ede7c7edf0e5 (diff)
downloademacs-ab996cceae342fd13ef3c7c0c93b9ed45dae2df6.tar.gz
(button): Inherit from link face on a tty.
Diffstat (limited to 'lisp/button.el')
-rw-r--r--lisp/button.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/button.el b/lisp/button.el
index 20c2c0692e6..8c3681854e7 100644
--- a/lisp/button.el
+++ b/lisp/button.el
@@ -53,8 +53,9 @@
;; Use color for the MS-DOS port because it doesn't support underline.
;; Also for the linux console.
-(defface button '((((type pc tty) (class color))
+(defface button '((((type pc) (class color))
(:foreground "lightblue"))
+ (((type tty)) (:inherit link))
(t :underline t))
"Default face used for buttons."
:group 'basic-faces)