Function: vhdl-visit-file
vhdl-visit-file is a macro defined in vhdl-mode.el.gz.
Signature
(vhdl-visit-file FILE-NAME ISSUE-ERROR &rest BODY)
Documentation
Visit file FILE-NAME and execute BODY.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defmacro vhdl-visit-file (file-name issue-error &rest body)
"Visit file FILE-NAME and execute BODY."
(declare (debug t) (indent 2))
`(vhdl--visit-file ,file-name ,issue-error (lambda () . ,body)))