Function: vhdl-template-footer
vhdl-template-footer is an interactive and byte-compiled function
defined in vhdl-mode.el.gz.
Signature
(vhdl-template-footer)
Documentation
Insert a VHDL file footer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-template-footer ()
"Insert a VHDL file footer."
(interactive)
(unless (equal vhdl-file-footer "")
(let (pos)
(save-excursion
(goto-char (point-max))
(setq pos (point-marker))
(vhdl-insert-string-or-file vhdl-file-footer)
(unless (= (preceding-char) ?\n)
(insert "\n")))
(vhdl-template-replace-header-keywords pos (point-max-marker)))))