Function: verilog-auto-insert-last

verilog-auto-insert-last is a byte-compiled function defined in verilog-mode.el.gz.

Signature

(verilog-auto-insert-last)

Documentation

Expand AUTOINSERTLAST statements, as part of M-x verilog-auto (verilog-auto).

The Lisp code provided is called after all other AUTOS have been expanded, and the Lisp code generally will call insert to insert text into the current file beginning on the line after the AUTOINSERTLAST.

Other than when called (after AUTOs are expanded), the functionality is otherwise identical to AUTOINSERTLISP and verilog-auto-insert-lisp which executes before (as opposed to after) other AUTOs.

See verilog-auto-insert-lisp for examples.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defun verilog-auto-insert-last ()
  "Expand AUTOINSERTLAST statements, as part of \\[verilog-auto].
The Lisp code provided is called after all other AUTOS have been
expanded, and the Lisp code generally will call `insert' to
insert text into the current file beginning on the line after the
AUTOINSERTLAST.

Other than when called (after AUTOs are expanded), the functionality
is otherwise identical to AUTOINSERTLISP and `verilog-auto-insert-lisp' which
executes before (as opposed to after) other AUTOs.

See `verilog-auto-insert-lisp' for examples."
  (verilog-auto-insert-lisp))