Variable: verilog-typedef-regexp
verilog-typedef-regexp is a customizable variable defined in
verilog-mode.el.gz.
Value
nil
Documentation
If non-nil, regular expression that matches Verilog-2001 typedef names.
For example, "_t$" matches typedefs named with _t, as in the C language.
See also verilog-case-fold.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defcustom verilog-typedef-regexp nil
"If non-nil, regular expression that matches Verilog-2001 typedef names.
For example, \"_t$\" matches typedefs named with _t, as in the C language.
See also `verilog-case-fold'."
:group 'verilog-mode-auto
:type '(choice (const nil) regexp))