+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
"\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
;; 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