]> git.eshelyaron.com Git - emacs.git/commitdiff
(button): Inherit from link face on a tty.
authorNick Roberts <nickrob@snap.net.nz>
Mon, 23 Apr 2007 03:32:12 +0000 (03:32 +0000)
committerNick Roberts <nickrob@snap.net.nz>
Mon, 23 Apr 2007 03:32:12 +0000 (03:32 +0000)
lisp/button.el

index 20c2c0692e6eb9e4424cb2bbec4938c4b08a0dc2..8c3681854e77c4fdbe1e1e0cfbe326b511aded9e 100644 (file)
@@ -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)