From: Jason Rumney Date: Tue, 21 Mar 2000 21:58:32 +0000 (+0000) Subject: (custom-button-face) [w32]: Use same face as x. X-Git-Tag: emacs-pretest-21.0.90~4556 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=731d16f16966d6b8b8bbc33ece75e8b8f8fece86;p=emacs.git (custom-button-face) [w32]: Use same face as x. (custom-button-pressed-face) [w32]: Likewise. --- diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el index 85cef188e86..90a7db3b9b9 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el @@ -1688,6 +1688,8 @@ and `face'." (defface custom-button-face '((((type x) (class color)) ; Like default modeline (:box (:line-width 2 :style released-button) :background "lightgrey")) + (((type w32) (class color)) ; Like default modeline + (:box (:line-width 2 :style released-button) :background "lightgrey")) (t nil)) "Face used for buttons in customization buffers." @@ -1697,6 +1699,8 @@ and `face'." (defface custom-button-pressed-face '((((type x) (class color)) (:box (:line-width 2 :style pressed-button) :background "lightgrey")) + (((type w32) (class color)) + (:box (:line-width 2 :style pressed-button) :background "lightgrey")) (t (:inverse-video t))) "Face used for buttons in customization buffers."