From c29749e73120925796d8c741f5e12388091d6691 Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Thu, 24 Mar 2005 03:25:40 +0000 Subject: [PATCH] Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-204 Clean up gdb-ui breakpoint faces 2005-03-23 Miles Bader * lisp/progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled): Remove tty-specific variants, as they're no longer needed. --- lisp/ChangeLog | 5 +++++ lisp/progmodes/gdb-ui.el | 19 +++++-------------- 2 files changed, 10 insertions(+), 14 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a99f0af5647..18df7646929 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2005-03-23 Miles Bader + + * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled): + Remove tty-specific variants, as they're no longer needed. + 2005-03-23 Lute Kamstra * generic-x.el: Code cleanup: make arguments constant whenever diff --git a/lisp/progmodes/gdb-ui.el b/lisp/progmodes/gdb-ui.el index 2a714e84b9a..cb58a53a0d3 100644 --- a/lisp/progmodes/gdb-ui.el +++ b/lisp/progmodes/gdb-ui.el @@ -1161,12 +1161,9 @@ static char *magick[] = { "\x3c\x7e\xff\xff\xff\xff\x7e\x3c")) (defface breakpoint-enabled - '((((type tty)) - :weight bold - :foreground "red") - (t - :weight bold - :foreground "red")) + '((t + :foreground "red" + :weight bold)) "Face for enabled breakpoint icon in fringe." :group 'gud) ;; compatibility alias for old name @@ -1176,14 +1173,8 @@ static char *magick[] = { ;; 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. - '((((type tty) (background dark)) - :foreground "grey60") - (((type tty) (background light)) - :foreground "grey40") - (((background dark)) - :foreground "grey60") - (((background light)) - :foreground "grey40")) + '((((background dark)) :foreground "grey60") + (((background light)) :foreground "grey40")) "Face for disabled breakpoint icon in fringe." :group 'gud) ;; compatibility alias for old name -- 2.39.2