Skip to content

Commit e2ff225

Browse files
committed
Replace obsolete rx any with not-newline in php-flymake
1 parent f92c0ac commit e2ff225

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)