mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-04 14:40:54 -08:00
add php error regex for compile mode
This commit is contained in:
parent
5b5eae56a2
commit
fa2a4e7dac
2 changed files with 8 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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://\\(.+\\)"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue