emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/progmodes/gdb-ui.el


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/progmodes/gdb-ui.el
Date: Tue, 22 Mar 2005 00:05:50 -0500

Index: emacs/lisp/progmodes/gdb-ui.el
diff -c emacs/lisp/progmodes/gdb-ui.el:1.54 emacs/lisp/progmodes/gdb-ui.el:1.55
*** emacs/lisp/progmodes/gdb-ui.el:1.54 Sun Mar 20 01:49:32 2005
--- emacs/lisp/progmodes/gdb-ui.el      Tue Mar 22 05:05:50 2005
***************
*** 1161,1179 ****
         "\x3c\x7e\xff\xff\xff\xff\x7e\x3c"))
  
  (defface breakpoint-enabled
!   '((t
!      :inherit fringe
       :weight bold
!      :foreground "red"))
    "Face for enabled breakpoint icon in fringe."
    :group 'gud)
  ;; compatibility alias for old name
  (put 'breakpoint-enabled-bitmap-face 'face-alias 'breakpoint-enabled)
  
  (defface breakpoint-disabled
!   '((t
!      :inherit fringe
!      :foreground "grey60"))
    "Face for disabled breakpoint icon in fringe."
    :group 'gud)
  ;; compatibility alias for old name
--- 1161,1198 ----
         "\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))
    "Face for enabled breakpoint icon in fringe."
    :group 'gud)
  ;; compatibility alias for old name
  (put 'breakpoint-enabled-bitmap-face 'face-alias 'breakpoint-enabled)
  
  (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.
!   '((((type tty)  (background dark))
!      :foreground "grey60")
!     (((type tty) (background light))
!      :foreground "grey40")
!     (((background dark))
!      :foreground "grey60"
!      :inherit fringe)
!     (((background light))
!      :foreground "grey40"
!      :inherit fringe))
    "Face for disabled breakpoint icon in fringe."
    :group 'gud)
  ;; compatibility alias for old name




reply via email to

[Prev in Thread] Current Thread [Next in Thread]