Function: semantic-show-label

semantic-show-label is an interactive and byte-compiled function defined in util.el.gz.

Signature

(semantic-show-label LABEL &optional TAG)

Documentation

Show the value of LABEL on TAG.

If TAG is not specified, use the tag at point.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/util.el.gz
(defun semantic-show-label (label &optional tag)
  "Show the value of LABEL on TAG.
If TAG is not specified, use the tag at point."
  (interactive "sLabel: ")
  (if (not tag)
      (progn
	(semantic-fetch-tags)
	(setq tag (semantic-current-tag))))
  (message "%s: %S" label (semantic--tag-get-property tag (intern label))))