changeset 77437:fa273fd354c2

(button): Inherit from link face on a tty.
author Nick Roberts <nickrob@snap.net.nz>
date Mon, 23 Apr 2007 03:32:12 +0000
parents ad082730f3d9
children 4d54d376f8dc
files lisp/button.el
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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)