aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1998-09-06 14:20:14 +0000
committerKarl Heuer1998-09-06 14:20:14 +0000
commit8d9fbccc36cf7575bd2dcfa44845e34bab0e2c54 (patch)
tree687841713e9febe468f35a128679f2af15ad836e
parent3ec353b132aa6c89545acdc0d9ce32349b72e71d (diff)
downloademacs-8d9fbccc36cf7575bd2dcfa44845e34bab0e2c54.tar.gz
emacs-8d9fbccc36cf7575bd2dcfa44845e34bab0e2c54.zip
(compilation-error-regexp-alist):
In first pattern (GNU utilities and other things), allow a space after the optional program name at the beginning.
-rw-r--r--lisp/progmodes/compile.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 5b68df4d493..68801cc8617 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].")
156 ;; We'll insist that the number be followed by a colon or closing 156 ;; We'll insist that the number be followed by a colon or closing
157 ;; paren, because otherwise this matches just about anything 157 ;; paren, because otherwise this matches just about anything
158 ;; containing a number with spaces around it. 158 ;; containing a number with spaces around it.
159 ("\\([a-zA-Z]+:\\)?\\([a-zA-Z]?:?[^:( \t\n]+\\)[:(][ \t]*\\([0-9]+\\)\ 159 ("\\([a-zA-Z]+: ?\\)?\\([a-zA-Z]?:?[^:( \t\n]+\\)[:(][ \t]*\\([0-9]+\\)\
160\\([) \t]\\|:\\([^0-9\n]\\|\\([0-9]+:\\)\\)\\)" 2 3 6) 160\\([) \t]\\|:\\([^0-9\n]\\|\\([0-9]+:\\)\\)\\)" 2 3 6)
161 161
162 ;; Microsoft C/C++: 162 ;; Microsoft C/C++: