comparison lisp/progmodes/gud.el @ 90385:72dea2ff0142

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-57 Merge from emacs--devo--0 Patches applied: * emacs--devo--0 (patch 226-238) - Update from CVS - Merge from gnus--rel--5.10 - Update from CVS: lisp/progmodes/python.el (python-mode): Fix typo. * gnus--rel--5.10 (patch 86-90) - Update from CVS - Merge from emacs--devo--0
author Miles Bader <miles@gnu.org>
date Fri, 21 Apr 2006 05:39:14 +0000
parents e6bf73e43cf4 e6c80fdc0101
children 2ecafc6d5db7
comparison
equal deleted inserted replaced
90384:c156f6a9e7b5 90385:72dea2ff0142
372 "Keymap used when in the buffers display mode.") 372 "Keymap used when in the buffers display mode.")
373 373
374 (defun gud-speedbar-item-info () 374 (defun gud-speedbar-item-info ()
375 "Display the data type of the watch expression element." 375 "Display the data type of the watch expression element."
376 (let ((var (nth (- (line-number-at-pos (point)) 2) gdb-var-list))) 376 (let ((var (nth (- (line-number-at-pos (point)) 2) gdb-var-list)))
377 (if (nth 4 var) 377 (if (nth 6 var)
378 (speedbar-message "%s" (nth 3 var))))) 378 (speedbar-message "%s: %s" (nth 6 var) (nth 3 var))
379 (speedbar-message "%s" (nth 3 var)))))
379 380
380 (defun gud-install-speedbar-variables () 381 (defun gud-install-speedbar-variables ()
381 "Install those variables used by speedbar to enhance gud/gdb." 382 "Install those variables used by speedbar to enhance gud/gdb."
382 (if gud-speedbar-key-map 383 (if gud-speedbar-key-map
383 nil 384 nil