Mercurial > emacs
comparison lisp/progmodes/compile.el @ 91821:4ab3a4d4cc4e
add php error regex for compile mode
author | Mark A. Hershberger <mah@everybody.org> |
---|---|
date | Wed, 13 Feb 2008 22:26:33 +0000 |
parents | 3db89e7c0f1d |
children | f991f10f15ec |
comparison
equal
deleted
inserted
replaced
91820:f084b6fae1f0 | 91821:4ab3a4d4cc4e |
---|---|
286 ;; warnings" in recent perl when breaking circular references | 286 ;; warnings" in recent perl when breaking circular references |
287 ;; during program or thread exit. | 287 ;; during program or thread exit. |
288 (perl | 288 (perl |
289 " at \\([^ \n]+\\) line \\([0-9]+\\)\\(?:[,.]\\|$\\| \ | 289 " at \\([^ \n]+\\) line \\([0-9]+\\)\\(?:[,.]\\|$\\| \ |
290 during global destruction\\.$\\)" 1 2) | 290 during global destruction\\.$\\)" 1 2) |
291 | |
292 (php | |
293 "\\(?:Parse\\|Fatal\\) error: \\(.*\\) in \\(.*\\) on line \\([0-9]+\\)" | |
294 2 3 nil nil) | |
291 | 295 |
292 (rxp | 296 (rxp |
293 "^\\(?:Error\\|Warnin\\(g\\)\\):.*\n.* line \\([0-9]+\\) char\ | 297 "^\\(?:Error\\|Warnin\\(g\\)\\):.*\n.* line \\([0-9]+\\) char\ |
294 \\([0-9]+\\) of file://\\(.+\\)" | 298 \\([0-9]+\\) of file://\\(.+\\)" |
295 4 2 3 (1)) | 299 4 2 3 (1)) |