aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm <[email protected]>2005-03-22 23:08:57 +0000
committerKim F. Storm <[email protected]>2005-03-22 23:08:57 +0000
commit5f9e3a263619a4dcfd661898568d60b4bddba1d9 (patch)
tree9914f68e7ce64603aa8e52ee3992fa15a5fcdcbf
parent8df0ffbe5f3aa87b7fd02358b856ca23c764792c (diff)
(breakpoint-enabled, breakpoint-disabled):
Don't inherit from fringe face (now happens automatically).
-rw-r--r--lisp/progmodes/gdb-ui.el17
1 files changed, 4 insertions, 13 deletions
diff --git a/lisp/progmodes/gdb-ui.el b/lisp/progmodes/gdb-ui.el
index 89a69aaf2d..2a714e84b9 100644
--- a/lisp/progmodes/gdb-ui.el
+++ b/lisp/progmodes/gdb-ui.el
@@ -1161,16 +1161,12 @@ static char *magick[] = {
"\x3c\x7e\xff\xff\xff\xff\x7e\x3c"))
(defface breakpoint-enabled
- ;; On ttys, we don't inherit from the `fringe' face because that
- ;; doesn't seem to do the right thing in some cases (?), whereas
- ;; it's required on non-tty displays to get the background right.
'((((type tty))
:weight bold
:foreground "red")
(t
:weight bold
- :foreground "red"
- :inherit fringe))
+ :foreground "red"))
"Face for enabled breakpoint icon in fringe."
:group 'gud)
;; compatibility alias for old name
@@ -1179,20 +1175,15 @@ static char *magick[] = {
(defface breakpoint-disabled
;; We use different values of grey for different background types,
;; so that on low-color displays it will end up as something visible
- ;; if it has to be approximated. On ttys, we don't inherit from the
- ;; `fringe' face because that doesn't seem to do the right thing in
- ;; some cases (?), whereas it's required on non-tty displays to get
- ;; the background right.
+ ;; if it has to be approximated.
'((((type tty) (background dark))
:foreground "grey60")
(((type tty) (background light))
:foreground "grey40")
(((background dark))
- :foreground "grey60"
- :inherit fringe)
+ :foreground "grey60")
(((background light))
- :foreground "grey40"
- :inherit fringe))
+ :foreground "grey40"))
"Face for disabled breakpoint icon in fringe."
:group 'gud)
;; compatibility alias for old name