diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/progmodes/compile.el | 4 |
2 files changed, 9 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d57a8a3532a..fce4875e965 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2011-01-08 Andreas Schwab <schwab@linux-m68k.org> | ||
| 2 | |||
| 3 | * progmodes/compile.el (compilation-error-regexp-alist-alist) | ||
| 4 | [gcc-include]: Tighten file name match, add match for column | ||
| 5 | number. (Bug#7806) | ||
| 6 | |||
| 1 | 2011-01-08 Glenn Morris <rgm@gnu.org> | 7 | 2011-01-08 Glenn Morris <rgm@gnu.org> |
| 2 | 8 | ||
| 3 | * makefile.w32-in (EMACSOPT): Add --no-site-lisp. | 9 | * makefile.w32-in (EMACSOPT): Add --no-site-lisp. |
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index da9b213ad8f..eabfe22b5ee 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -239,7 +239,9 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2 nil (1)) | |||
| 239 | 239 | ||
| 240 | (gcc-include | 240 | (gcc-include |
| 241 | "^\\(?:In file included \\| \\|\t\\)from \ | 241 | "^\\(?:In file included \\| \\|\t\\)from \ |
| 242 | \\(.+\\):\\([0-9]+\\)\\(?:\\(:\\)\\|\\(,\\|$\\)\\)?" 1 2 nil (3 . 4)) | 242 | \\([0-9]*[^0-9\n]\\(?:[^\n :]\\| [^-/\n]\\|:[^ \n]\\)*?\\):\ |
| 243 | \\([0-9]+\\)\\(?::\\([0-9]+\\)\\)?\\(?:\\(:\\)\\|\\(,\\|$\\)\\)?" | ||
| 244 | 1 2 3 (4 . 5)) | ||
| 243 | 245 | ||
| 244 | (gnu | 246 | (gnu |
| 245 | ;; The first line matches the program name for | 247 | ;; The first line matches the program name for |