From 3d8be0c9451e5c63a0a118969fd580751f0781a1 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 29 Aug 1999 19:44:22 +0000 Subject: [PATCH] (compilation-error-regexp-alist): Fix the Perl -w entry to allow period after line number. Don't allow newlines in file name, but allow them after line number for Perl debugging traces. --- lisp/progmodes/compile.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 1f447d8a855..117819c527e 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -290,7 +290,9 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2) ;; Perl -w: ;; syntax error at automake line 922, near "':'" - (".* at \\([^ ]+\\) line \\([0-9]+\\)," 1 2) + ;; Perl debugging traces + ;; store::odrecall('File_A', 'x2') called at store.pm line 90 + (".* at \\([^ \n]+\\) line \\([0-9]+\\)[,.\n]" 1 2) ;; Oracle pro*c: ;; Semantic error at line 528, column 5, file erosacqdb.pc: -- 2.39.5