From 35136493f8a12853f92e81dd085907b2ae5efb03 Mon Sep 17 00:00:00 2001 From: Nick Roberts Date: Mon, 23 Apr 2007 03:32:12 +0000 Subject: [PATCH] (button): Inherit from link face on a tty. --- lisp/button.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) -- 2.39.5