1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-15 09:47:20 +00:00

add php error regex for compile mode

This commit is contained in:
Mark A. Hershberger 2008-02-13 22:26:33 +00:00
parent 5b5eae56a2
commit fa2a4e7dac
2 changed files with 8 additions and 0 deletions

View File

@ -16,6 +16,10 @@
(flymake-err-line-patterns): Add pattern for PHP errors.
(flymake-php-init): New function. PHP support for flymake.
* progmodes/compile.el (compilation-error-regexp-alist-alist): Add
regular expression for PHP errors.
2008-02-13 Michael Albinus <michael.albinus@gmx.de>
* net/ange-ftp.el (ange-ftp-quote-string): Use

View File

@ -289,6 +289,10 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2 nil (1))
" at \\([^ \n]+\\) line \\([0-9]+\\)\\(?:[,.]\\|$\\| \
during global destruction\\.$\\)" 1 2)
(php
"\\(?:Parse\\|Fatal\\) error: \\(.*\\) in \\(.*\\) on line \\([0-9]+\\)"
2 3 nil nil)
(rxp
"^\\(?:Error\\|Warnin\\(g\\)\\):.*\n.* line \\([0-9]+\\) char\
\\([0-9]+\\) of file://\\(.+\\)"