# HG changeset patch # User Miles Bader # Date 974192487 0 # Node ID 900ca3da6e0158cc17ac617d6ede44659917ef75 # Parent 94ee575dd6682155f0502b6e9f728c6aef5c9a7a (header-line): Use `:box nil' for color/gs displays too. diff -r 94ee575dd668 -r 900ca3da6e01 lisp/faces.el --- a/lisp/faces.el Tue Nov 14 05:44:18 2000 +0000 +++ b/lisp/faces.el Tue Nov 14 09:01:27 2000 +0000 @@ -1601,29 +1601,29 @@ ;; highlighting; this may be too confusing in general, although it ;; happens to look good with the only current use of header-lines, ;; the info browser. XXX - (:underline t)) + :underline t) (((class color grayscale) (background light)) - (:inherit mode-line - :background "grey90" :foreground "grey20" - :box (:line-width 1 :style released-button))) + :inherit mode-line + :background "grey90" :foreground "grey20" + :box nil) (((class color grayscale) (background dark)) - (:inherit mode-line - :background "grey20" :foreground "grey90" - :box (:line-width 1 :style released-button))) + :inherit mode-line + :background "grey20" :foreground "grey90" + :box nil) (((class mono) (background light)) - (:inherit mode-line - :background "white" :foreground "black" - :inverse-video nil - :box nil - :underline t)) + :inherit mode-line + :background "white" :foreground "black" + :inverse-video nil + :box nil + :underline t) (((class mono) (background dark)) - (:inherit mode-line - :background "black" :foreground "white" - :inverse-video nil - :box nil - :underline t)) + :inherit mode-line + :background "black" :foreground "white" + :inverse-video nil + :box nil + :underline t) (t - (:inverse-video t))) + :inverse-video t)) "Basic header-line face." :version "21.1" :group 'basic-faces)