Function: vhdl-template-modify
vhdl-template-modify is an interactive and byte-compiled function
defined in vhdl-mode.el.gz.
Signature
(vhdl-template-modify &optional NOERROR)
Documentation
Actualize modification date.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-template-modify (&optional noerror)
"Actualize modification date."
(interactive)
(vhdl-prepare-search-2
(save-excursion
(goto-char (point-min))
(if (re-search-forward vhdl-modify-date-prefix-string nil t)
(progn (delete-region (point) (progn (end-of-line) (point)))
(vhdl-template-insert-date))
(unless noerror
(error "ERROR: Modification date prefix string \"%s\" not found"
vhdl-modify-date-prefix-string))))))