Variable: verilog-error-regexp-xemacs-alist

verilog-error-regexp-xemacs-alist is a variable defined in verilog-mode.el.gz.

Value

(verilog
 ("\\(Error\\|Warning\\)!.*\n?.*\"\\([^\"]+\\)\", \\([0-9]+\\)" 2 3)
 ("([WE][0-9A-Z]+)[     ]+\\([^         \n,]+\\)[,      ]+\\(line[      ]+\\)?\\([0-9]+\\):.*$"
  1 3)
 (".*\\*[WE],[0-9A-Z]+\\(\\[[0-9A-Z_,]+\\]\\)? (\\([^   ,]+\\),\\([0-9]+\\)"
  2 3)
 ("[^\n]*\\[\\([^:]+\\):\\([0-9]+\\)\\]" 1 2)
 ("\\(WARNING\\|ERROR\\|INFO\\)[^:]*: \\([^,]+\\),\\s-+\\(line \\)?\\([0-9]+\\):"
  2 4)
 ("\\([a-zA-Z]?:?[^:(   \n]+\\)[:(][    ]*\\([0-9]+\\)\\([)     ]\\|:\\([^0-9\n]\\|\\([0-9]+:\\)\\)\\)"
  1 2 5)
 ("\\(Error\\|Warning\\).*in file (\\([^        ]+\\) at line *\\([0-9]+\\))"
  2 3)
 ("\\(Error\\|Warning\\):[^(]*(\\([^    ]+\\) line *\\([0-9]+\\))" 2 3)
 ("Warning:.*(port.*(\\([^      ]+\\) line \\([0-9]+\\))" 1 2)
 ("\\(Error\\|Warning\\):[\n.]*\\([^    ]+\\) *\\([0-9]+\\):" 2 3)
 ("syntax error:.*\n\\([^       ]+\\) *\\([0-9]+\\):" 1 2)
 ("%?\\(Error\\|Warning\\)\\(-[^:]+\\|\\):[\n ]*\\([^   :]+\\):\\([0-9]+\\):"
  3 4)
 ("^In file \\([^       ]+\\)[  ]+line[         ]+\\([0-9]+\\):\n[^\n]*\n[^\n]*\n\\(Warning\\|Error\\|Failure\\)[^\n]*"
  1 2))

Documentation

List of regexps for Verilog compilers.

See compilation-error-regexp-alist-alist for the formatting. For XEmacs.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defvar verilog-error-regexp-xemacs-alist
  ;; Emacs form is '((v-tool "re" 1 2) ...)
  ;; XEmacs form is '(verilog ("re" 1 2) ...)
  ;; So we can just map from Emacs to XEmacs
  (cons 'verilog (mapcar #'cdr verilog-error-regexp-emacs-alist))
  "List of regexps for Verilog compilers.
See `compilation-error-regexp-alist-alist' for the formatting.  For XEmacs.")