Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-204
authorMiles Bader <miles@gnu.org>
Thu, 24 Mar 2005 03:25:40 +0000 (03:25 +0000)
committerMiles Bader <miles@gnu.org>
Thu, 24 Mar 2005 03:25:40 +0000 (03:25 +0000)
Clean up gdb-ui breakpoint faces

2005-03-23  Miles Bader  <miles@gnu.org>

   * lisp/progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
   Remove tty-specific variants, as they're no longer needed.

lisp/ChangeLog
lisp/progmodes/gdb-ui.el

index a99f0af..18df764 100644 (file)
@@ -1,3 +1,8 @@
+2005-03-23  Miles Bader  <miles@gnu.org>
+
+       * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled): 
+       Remove tty-specific variants, as they're no longer needed.
+
 2005-03-23  Lute Kamstra  <lute@gnu.org>
 
        * generic-x.el: Code cleanup: make arguments constant whenever
index 2a714e8..cb58a53 100644 (file)
@@ -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