diff options
| -rw-r--r-- | lisp/progmodes/gdb-ui.el | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/lisp/progmodes/gdb-ui.el b/lisp/progmodes/gdb-ui.el index b598f2de1f7..4dbc9893f61 100644 --- a/lisp/progmodes/gdb-ui.el +++ b/lisp/progmodes/gdb-ui.el | |||
| @@ -1771,10 +1771,15 @@ static char *magick[] = { | |||
| 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 | ||