From e2ff225e5350ac0027ff16ed93cbf5dbfd55bddb Mon Sep 17 00:00:00 2001 From: USAMI Kenta Date: Tue, 11 Aug 2026 03:43:39 +0900 Subject: [PATCH] Replace obsolete rx any with not-newline in php-flymake --- lisp/php-flymake.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/php-flymake.el b/lisp/php-flymake.el index 00bafba8..1477faf6 100644 --- a/lisp/php-flymake.el +++ b/lisp/php-flymake.el @@ -49,8 +49,8 @@ (rx bol (? "PHP ") (group (or "Parse" "Fatal")) ;; 1: type, not used " error:" (+ (syntax whitespace)) - (group (+? any)) ;; 2: msg - " in " (group (+? any)) ;; 3: file, not used + (group (+? not-newline)) ;; 2: msg + " in " (group (+? not-newline)) ;; 3: file, not used " on line " (group (+ num)) ;; 4: line eol)))