# HG changeset patch # User Nick Roberts # Date 1177299132 0 # Node ID fa273fd354c225cc608032723adaa0df8a1d47f1 # Parent ad082730f3d9634235d939531dc951a724f6c800 (button): Inherit from link face on a tty. diff -r ad082730f3d9 -r fa273fd354c2 lisp/button.el --- a/lisp/button.el Mon Apr 23 03:27:57 2007 +0000 +++ b/lisp/button.el Mon Apr 23 03:32:12 2007 +0000 @@ -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)