Function: verilog-at-close-struct-p
verilog-at-close-struct-p is a byte-compiled function defined in
verilog-mode.el.gz.
Signature
(verilog-at-close-struct-p)
Documentation
If at the } that closes a struct, return true.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defun verilog-at-close-struct-p ()
"If at the } that closes a struct, return true."
(and (equal (char-after) ?\})
(verilog-in-struct-p)
(looking-at "}\\(?:\\s-*\\w+\\s-*\\(?:,\\s-*\\w+\\s-*\\)*\\)?;")))