Function: verilog-auto-star-safe
verilog-auto-star-safe is a byte-compiled function defined in
verilog-mode.el.gz.
Signature
(verilog-auto-star-safe)
Documentation
Return if a .* AUTOINST is safe to delete or expand.
It was created by the AUTOS themselves, or by the user.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defun verilog-auto-star-safe ()
"Return if a .* AUTOINST is safe to delete or expand.
It was created by the AUTOS themselves, or by the user."
(and verilog-auto-star-expand
(looking-at
(concat "[ \t\n\f,]*\\([)]\\|// " verilog-inst-comment-re "\\)"))))