Function: vhdl-doc-variable

vhdl-doc-variable is an interactive and byte-compiled function defined in vhdl-mode.el.gz.

Signature

(vhdl-doc-variable VARIABLE)

Documentation

Display VARIABLE's documentation in *Help* buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-doc-variable (variable)
  "Display VARIABLE's documentation in *Help* buffer."
  (interactive)
  (unless (featurep 'xemacs)
    (help-setup-xref (list #'vhdl-doc-variable variable)
		     (called-interactively-p 'interactive)))
  (with-output-to-temp-buffer
      (if (fboundp 'help-buffer) (help-buffer) "*Help*")
    (princ (documentation-property variable 'variable-documentation))
    (with-current-buffer standard-output
      (help-mode))
    (help-print-return-message)))