From: Nick Roberts Date: Mon, 23 Apr 2007 03:32:12 +0000 (+0000) Subject: (button): Inherit from link face on a tty. X-Git-Tag: emacs-pretest-22.0.99~50 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=35136493f8a12853f92e81dd085907b2ae5efb03;p=emacs.git (button): Inherit from link face on a tty. --- 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)