Function: verilog-at-struct-p
verilog-at-struct-p is a byte-compiled function defined in
verilog-mode.el.gz.
Signature
(verilog-at-struct-p)
Documentation
If at the { of a struct, return true, not moving point.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defun verilog-at-struct-p ()
"If at the { of a struct, return true, not moving point."
(save-excursion
(if (and (equal (char-after) ?\{)
(verilog-backward-token))
(looking-at "\\<\\(?:struct\\|union\\|packed\\|\\(un\\)?signed\\)\\>")
nil)))