aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab2011-01-08 14:32:31 +0100
committerAndreas Schwab2011-01-08 14:32:31 +0100
commit6c7ec17145ca8998bc74151bbe0d52e9b7f73a2f (patch)
tree9272893b64b35315597759c2582ab203a1095830
parent7c8379331a009a42b0758a0dd7ca805513ff0316 (diff)
downloademacs-6c7ec17145ca8998bc74151bbe0d52e9b7f73a2f.tar.gz
emacs-6c7ec17145ca8998bc74151bbe0d52e9b7f73a2f.zip
* lisp/progmodes/compile.el (compilation-error-regexp-alist-alist)
[gnu]: Remove unused group.
-rw-r--r--lisp/ChangeLog1
-rw-r--r--lisp/progmodes/compile.el4
2 files changed, 3 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index fce4875e965..c39ded8f5d9 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -3,6 +3,7 @@
3 * progmodes/compile.el (compilation-error-regexp-alist-alist) 3 * progmodes/compile.el (compilation-error-regexp-alist-alist)
4 [gcc-include]: Tighten file name match, add match for column 4 [gcc-include]: Tighten file name match, add match for column
5 number. (Bug#7806) 5 number. (Bug#7806)
6 [gnu]: Remove unused group.
6 7
72011-01-08 Glenn Morris <rgm@gnu.org> 82011-01-08 Glenn Morris <rgm@gnu.org>
8 9
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index eabfe22b5ee..710b5d0858b 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -270,12 +270,12 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2 nil (1))
270 ;; The "in \\|from " exception was added to handle messages from Ruby. 270 ;; The "in \\|from " exception was added to handle messages from Ruby.
271 "^\\(?:[[:alpha:]][-[:alnum:].]+: ?\\|[ \t]+\\(?:in \\|from \\)\\)?\ 271 "^\\(?:[[:alpha:]][-[:alnum:].]+: ?\\|[ \t]+\\(?:in \\|from \\)\\)?\
272\\([0-9]*[^0-9\n]\\(?:[^\n :]\\| [^-/\n]\\|:[^ \n]\\)*?\\): ?\ 272\\([0-9]*[^0-9\n]\\(?:[^\n :]\\| [^-/\n]\\|:[^ \n]\\)*?\\): ?\
273\\([0-9]+\\)\\(?:\\([.:]\\)\\([0-9]+\\)\\)?\ 273\\([0-9]+\\)\\(?:[.:]\\([0-9]+\\)\\)?\
274\\(?:-\\([0-9]+\\)?\\(?:\\.\\([0-9]+\\)\\)?\\)?:\ 274\\(?:-\\([0-9]+\\)?\\(?:\\.\\([0-9]+\\)\\)?\\)?:\
275\\(?: *\\(\\(?:Future\\|Runtime\\)?[Ww]arning\\|W:\\)\\|\ 275\\(?: *\\(\\(?:Future\\|Runtime\\)?[Ww]arning\\|W:\\)\\|\
276 *\\([Ii]nfo\\(?:\\>\\|rmationa?l?\\)\\|I:\\|instantiated from\\|[Nn]ote\\)\\|\ 276 *\\([Ii]nfo\\(?:\\>\\|rmationa?l?\\)\\|I:\\|instantiated from\\|[Nn]ote\\)\\|\
277\[0-9]?\\(?:[^0-9\n]\\|$\\)\\|[0-9][0-9][0-9]\\)" 277\[0-9]?\\(?:[^0-9\n]\\|$\\)\\|[0-9][0-9][0-9]\\)"
278 1 (2 . 5) (4 . 6) (7 . 8)) 278 1 (2 . 4) (3 . 5) (6 . 7))
279 279
280 (lcc 280 (lcc
281 "^\\(?:E\\|\\(W\\)\\), \\([^(\n]+\\)(\\([0-9]+\\),[ \t]*\\([0-9]+\\)" 281 "^\\(?:E\\|\\(W\\)\\), \\([^(\n]+\\)(\\([0-9]+\\),[ \t]*\\([0-9]+\\)"