Function: vhdl-doc-mode

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

Signature

(vhdl-doc-mode)

Documentation

Display VHDL Mode documentation in *Help* buffer.

Key Bindings

Source Code

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