mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 04:10:54 -08:00
(gdb-var-create-handler): Make watch
expressions display in speedbar for all buffers when debugging. (gdb-speedbar-expand-node): Ensure node contraction is always updated.
This commit is contained in:
parent
425fbda641
commit
695bdd0107
1 changed files with 6 additions and 1 deletions
|
|
@ -437,6 +437,9 @@ Also display the main routine in the disassembly buffer if present."
|
|||
nil nil)))
|
||||
(push var gdb-var-list)
|
||||
(speedbar 1)
|
||||
(unless (string-equal
|
||||
speedbar-initial-expansion-list-name "GUD")
|
||||
(speedbar-change-initial-expansion-list "GUD"))
|
||||
(if (equal (nth 2 var) "0")
|
||||
(gdb-enqueue-input
|
||||
(list
|
||||
|
|
@ -600,7 +603,9 @@ INDENT is the current indentation depth."
|
|||
(dolist (var gdb-var-list)
|
||||
(if (string-match (concat token "\\.") (nth 1 var))
|
||||
(setq gdb-var-list (delq var gdb-var-list))))
|
||||
(setq gdb-var-changed t))))
|
||||
(setq gdb-var-changed t)
|
||||
(with-current-buffer gud-comint-buffer
|
||||
(speedbar-timer-fn)))))
|
||||
|
||||
(defun gdb-get-target-string ()
|
||||
(with-current-buffer gud-comint-buffer
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue