Function: verilog-regexp-words

verilog-regexp-words is a byte-compiled function defined in verilog-mode.el.gz.

Signature

(verilog-regexp-words A)

Documentation

Call regexp-opt with word delimiters for the words A.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(eval-when-compile
  (defun verilog-regexp-words (a)
    "Call `regexp-opt' with word delimiters for the words A."
    (concat "\\<" (verilog-regexp-opt a t) "\\>")))