Function: verilog-delete-auto-star-all

verilog-delete-auto-star-all is a byte-compiled function defined in verilog-mode.el.gz.

Signature

(verilog-delete-auto-star-all)

Documentation

Delete a .* AUTOINST, if it is safe.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defun verilog-delete-auto-star-all ()
  "Delete a .* AUTOINST, if it is safe."
  (when (verilog-auto-star-safe)
    (verilog-delete-to-paren)))