Function: verilog-insert

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

Signature

(verilog-insert &rest STUFF)

Documentation

Insert STUFF arguments, tracking for verilog-inside-comment-or-string-p.

Any insert that includes a comment must have the entire comment inserted using a single call to verilog-insert.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defun verilog-insert (&rest stuff)
  "Insert STUFF arguments, tracking for `verilog-inside-comment-or-string-p'.
Any insert that includes a comment must have the entire comment
inserted using a single call to `verilog-insert'."
  (let ((pt (point)))
    (while stuff
      (insert (car stuff))
      (setq stuff (cdr stuff)))
    (verilog-scan-region pt (point))))