aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 @@
53 53
54;; Use color for the MS-DOS port because it doesn't support underline. 54;; Use color for the MS-DOS port because it doesn't support underline.
55;; Also for the linux console. 55;; Also for the linux console.
56(defface button '((((type pc tty) (class color)) 56(defface button '((((type pc) (class color))
57 (:foreground "lightblue")) 57 (:foreground "lightblue"))
58 (((type tty)) (:inherit link))
58 (t :underline t)) 59 (t :underline t))
59 "Default face used for buttons." 60 "Default face used for buttons."
60 :group 'basic-faces) 61 :group 'basic-faces)