Skip to content

Commit fdcba03

Browse files
authored
Merge pull request #829 from emacs-php/fix/rx-any-compile
Replace obsolete rx any with not-newline in php-flymake
2 parents f92c0ac + e2ff225 commit fdcba03

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lisp/php-flymake.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949
(rx bol (? "PHP ")
5050
(group (or "Parse" "Fatal")) ;; 1: type, not used
5151
" error:" (+ (syntax whitespace))
52-
(group (+? any)) ;; 2: msg
53-
" in " (group (+? any)) ;; 3: file, not used
52+
(group (+? not-newline)) ;; 2: msg
53+
" in " (group (+? not-newline)) ;; 3: file, not used
5454
" on line " (group (+ num)) ;; 4: line
5555
eol)))
5656

0 commit comments

Comments
 (0)