Function: verilog-delete-auto
verilog-delete-auto is an interactive and byte-compiled function
defined in verilog-mode.el.gz.
Signature
(verilog-delete-auto)
Documentation
Delete the automatic outputs, regs, and wires created by M-x verilog-auto (verilog-auto).
Use M-x verilog-auto (verilog-auto) to re-insert the updated AUTOs.
The hooks verilog-before-delete-auto-hook and verilog-delete-auto-hook are
called before and after this function, respectively.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defun verilog-delete-auto ()
"Delete the automatic outputs, regs, and wires created by \\[verilog-auto].
Use \\[verilog-auto] to re-insert the updated AUTOs.
The hooks `verilog-before-delete-auto-hook' and `verilog-delete-auto-hook' are
called before and after this function, respectively."
(interactive)
(save-excursion
(if (buffer-file-name)
(find-file-noselect (buffer-file-name))) ; To check we have latest version
(verilog-save-font-no-change-functions
(verilog-save-scan-cache
(verilog-delete-auto-buffer)))))