diff options
| author | Karl Heuer | 1998-12-14 03:06:46 +0000 |
|---|---|---|
| committer | Karl Heuer | 1998-12-14 03:06:46 +0000 |
| commit | e228c7e2d4cc93e458cc1ecba561da69f8a7d317 (patch) | |
| tree | 2e6327e0a85d57b2821ba5af3b2544dd46360fb8 /lisp/progmodes | |
| parent | 4044f853251d04c63f3e6fbd8de14c59ec9df99a (diff) | |
| download | emacs-e228c7e2d4cc93e458cc1ecba561da69f8a7d317.tar.gz emacs-e228c7e2d4cc93e458cc1ecba561da69f8a7d317.zip | |
(compilation-error-regexp-alist): Fix regexp to match
"ChangeLog:1:1998-12-09 ..."
Diffstat (limited to 'lisp/progmodes')
| -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 0be2b759bf9..74ee72dc459 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -157,7 +157,7 @@ or when it is used with \\[next-error] or \\[compile-goto-error].") | |||
| 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]+:\\)\\|[0-9]*[^:0-9]\\)\\)" 2 3 6) |
| 161 | 161 | ||
| 162 | ;; Microsoft C/C++: | 162 | ;; Microsoft C/C++: |
| 163 | ;; keyboard.c(537) : warning C4005: 'min' : macro redefinition | 163 | ;; keyboard.c(537) : warning C4005: 'min' : macro redefinition |