From ae9e2dc7aee3f424ffc3ff7b955181efc6c32477 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Thu, 10 Sep 1998 15:58:37 +0000 Subject: [PATCH] (compilation-error-regexp-alist): Fix previous change: allow . and _ in command name. --- lisp/progmodes/compile.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 68801cc8617..f3fcdb0b404 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -156,7 +156,7 @@ or when it is used with \\[next-error] or \\[compile-goto-error].") ;; We'll insist that the number be followed by a colon or closing ;; paren, because otherwise this matches just about anything ;; containing a number with spaces around it. - ("\\([a-zA-Z]+: ?\\)?\\([a-zA-Z]?:?[^:( \t\n]+\\)[:(][ \t]*\\([0-9]+\\)\ + ("\\([-a-zA-Z._]+: ?\\)?\\([a-zA-Z]?:?[^:( \t\n]+\\)[:(][ \t]*\\([0-9]+\\)\ \\([) \t]\\|:\\([^0-9\n]\\|\\([0-9]+:\\)\\)\\)" 2 3 6) ;; Microsoft C/C++: -- 2.39.2