From: Nick Roberts Date: Mon, 20 Feb 2006 21:47:56 +0000 (+0000) Subject: (gud-speedbar-buttons): Use shadow face for all out of scope components. X-Git-Tag: emacs-pretest-22.0.90~3999 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cb0ea01eadc671eadffc8e0a67ebcd340e42f964;p=emacs.git (gud-speedbar-buttons): Use shadow face for all out of scope components. --- 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." (if (or parent status 'out-of-scope) nil 'gdb-edit-value) nil - (if (and status gdb-show-changed-values) + (if (and (or parent status) gdb-show-changed-values) 'shadow t) depth) (speedbar-make-tag-line @@ -505,7 +505,8 @@ required by the caller." 'gdb-speedbar-expand-node varnum (concat expr "\t" type) nil nil - (if (and status gdb-show-changed-values) 'shadow t) + (if (and (or parent status) gdb-show-changed-values) + 'shadow t) depth)))) (setq var-list (cdr var-list)))) (setq gdb-force-update nil)))