diff options
author | Karl Heuer <kwzh@gnu.org> | 1998-09-10 15:58:37 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1998-09-10 15:58:37 +0000 |
commit | ae9e2dc7aee3f424ffc3ff7b955181efc6c32477 (patch) | |
tree | 5ca80e0f4b7d8fb178b83ef86d9bd5f1e4df1f36 /lisp/progmodes/compile.el | |
parent | b519fca5a68b3cbe52ec858683d2027075fdfcd6 (diff) | |
download | emacs-ae9e2dc7aee3f424ffc3ff7b955181efc6c32477.tar.gz |
(compilation-error-regexp-alist):
Fix previous change: allow . and _ in command name.
Diffstat (limited to 'lisp/progmodes/compile.el')
-rw-r--r-- | lisp/progmodes/compile.el | 2 |
1 files changed, 1 insertions, 1 deletions
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++: |