Function: gud-speedbar-item-info

gud-speedbar-item-info is a byte-compiled function defined in gud.el.gz.

Signature

(gud-speedbar-item-info)

Documentation

Display the data type of the watch expression element.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/gud.el.gz
(defun gud-speedbar-item-info ()
  "Display the data type of the watch expression element."
  (let ((var (nth (- (line-number-at-pos (point)) 2) gdb-var-list)))
    (if (nth 7 var)
	(dframe-message "%s: %s" (nth 7 var) (nth 3 var))
      (dframe-message "%s" (nth 3 var)))))