diff options
| author | Nick Roberts | 2006-02-20 21:47:56 +0000 |
|---|---|---|
| committer | Nick Roberts | 2006-02-20 21:47:56 +0000 |
| commit | cb0ea01eadc671eadffc8e0a67ebcd340e42f964 (patch) | |
| tree | 845e4d82226cac4e1ace421effca11bd0a439123 | |
| parent | 17007b970aeccd66433c9305b8a1ca4e1c26dd86 (diff) | |
| download | emacs-cb0ea01eadc671eadffc8e0a67ebcd340e42f964.tar.gz emacs-cb0ea01eadc671eadffc8e0a67ebcd340e42f964.zip | |
(gud-speedbar-buttons): Use shadow face for all out of scope components.
| -rw-r--r-- | lisp/progmodes/gud.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/progmodes/gud.el b/lisp/progmodes/gud.el index cc7418d3ff4..ea2586a31d6 100644 --- a/lisp/progmodes/gud.el +++ b/lisp/progmodes/gud.el | |||
| @@ -497,7 +497,7 @@ required by the caller." | |||
| 497 | (if (or parent status 'out-of-scope) | 497 | (if (or parent status 'out-of-scope) |
| 498 | nil 'gdb-edit-value) | 498 | nil 'gdb-edit-value) |
| 499 | nil | 499 | nil |
| 500 | (if (and status gdb-show-changed-values) | 500 | (if (and (or parent status) gdb-show-changed-values) |
| 501 | 'shadow t) | 501 | 'shadow t) |
| 502 | depth) | 502 | depth) |
| 503 | (speedbar-make-tag-line | 503 | (speedbar-make-tag-line |
| @@ -505,7 +505,8 @@ required by the caller." | |||
| 505 | 'gdb-speedbar-expand-node varnum | 505 | 'gdb-speedbar-expand-node varnum |
| 506 | (concat expr "\t" type) | 506 | (concat expr "\t" type) |
| 507 | nil nil | 507 | nil nil |
| 508 | (if (and status gdb-show-changed-values) 'shadow t) | 508 | (if (and (or parent status) gdb-show-changed-values) |
| 509 | 'shadow t) | ||
| 509 | depth)))) | 510 | depth)))) |
| 510 | (setq var-list (cdr var-list)))) | 511 | (setq var-list (cdr var-list)))) |
| 511 | (setq gdb-force-update nil))) | 512 | (setq gdb-force-update nil))) |