Mercurial > emacs
comparison lisp/progmodes/gdb-ui.el @ 90796:4ef881a120fe
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 675-697)
- Update from CVS
- Merge from gnus--rel--5.10
- Release ERC 5.2.
* gnus--rel--5.10 (patch 211-215)
- Update from CVS
- Merge from emacs--devo--0
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-189
author | Miles Bader <miles@gnu.org> |
---|---|
date | Wed, 11 Apr 2007 00:17:47 +0000 |
parents | ec58e5c426ef 1056094c2006 |
children | a66921565bcb |
comparison
equal
deleted
inserted
replaced
90795:b9182b6a90c9 | 90796:4ef881a120fe |
---|---|
1769 :weight bold)) | 1769 :weight bold)) |
1770 "Face for enabled breakpoint icon in fringe." | 1770 "Face for enabled breakpoint icon in fringe." |
1771 :group 'gud) | 1771 :group 'gud) |
1772 | 1772 |
1773 (defface breakpoint-disabled | 1773 (defface breakpoint-disabled |
1774 ;; We use different values of grey for different background types, | 1774 '((((class color) (min-colors 88)) :foreground "grey70") |
1775 ;; so that on low-color displays it will end up as something visible | 1775 ;; Ensure that on low-color displays that we end up something visible. |
1776 ;; if it has to be approximated. | 1776 (((class color) (min-colors 8) (background light)) |
1777 '((t :foreground "grey70")) | 1777 :foreground "black") |
1778 (((class color) (min-colors 8) (background dark)) | |
1779 :foreground "white") | |
1780 (((type tty) (class mono)) | |
1781 :inverse-video t) | |
1782 (t :background "gray")) | |
1778 "Face for disabled breakpoint icon in fringe." | 1783 "Face for disabled breakpoint icon in fringe." |
1779 :group 'gud) | 1784 :group 'gud) |
1780 | 1785 |
1781 (defconst gdb-breakpoint-regexp | 1786 (defconst gdb-breakpoint-regexp |
1782 "\\([0-9]+\\).*?\\(?:point\\|catch\\s-+\\S-+\\)\\s-+\\S-+\\s-+\\(.\\)\\s-+") | 1787 "\\([0-9]+\\).*?\\(?:point\\|catch\\s-+\\S-+\\)\\s-+\\S-+\\s-+\\(.\\)\\s-+") |