changeset 60869:88ef15014617

Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-204 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.
author Miles Bader <miles@gnu.org>
date Thu, 24 Mar 2005 03:25:40 +0000
parents 6a1ac5a5fec1
children 92071f8a7671 13796b0653c7
files lisp/ChangeLog lisp/progmodes/gdb-ui.el
diffstat 2 files changed, 10 insertions(+), 14 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Wed Mar 23 22:47:41 2005 +0000
+++ b/lisp/ChangeLog	Thu Mar 24 03:25:40 2005 +0000
@@ -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
--- a/lisp/progmodes/gdb-ui.el	Wed Mar 23 22:47:41 2005 +0000
+++ b/lisp/progmodes/gdb-ui.el	Thu Mar 24 03:25:40 2005 +0000
@@ -1161,12 +1161,9 @@
        "\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 @@
   ;; 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