# HG changeset patch # User Eli Zaretskii # Date 1220627277 0 # Node ID 8038a4df451c47db62f0c83b67a503175b11e265 # Parent 9ba1289100562ea6bf97f98d8bebae4c4e89401f (custom-button-pressed): Default to inverse-video. diff -r 9ba128910056 -r 8038a4df451c lisp/cus-edit.el --- a/lisp/cus-edit.el Fri Sep 05 14:42:05 2008 +0000 +++ b/lisp/cus-edit.el Fri Sep 05 15:07:57 2008 +0000 @@ -2073,7 +2073,7 @@ (:box (:line-width 2 :style released-button) :background "grey90" :foreground "black")) (t - nil)) + (:inverse-video t))) "Mouse face for custom buffer buttons if `custom-raised-buttons' is non-nil." :version "22.1" :group 'custom-faces) @@ -2095,6 +2095,9 @@ (:box (:line-width 2 :style pressed-button) :background "lightgrey" :foreground "black")) (t + ;; This is for text terminals that support mouse, like GPM mouse + ;; or the MS-DOS terminal: inverse-video makes the button stand + ;; out on mouse-over. (:inverse-video t))) "Face for pressed custom buttons if `custom-raised-buttons' is non-nil." :version "21.1"