aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Magne Ingebrigtsen2011-07-12 14:28:35 +0200
committerLars Magne Ingebrigtsen2011-07-12 14:28:35 +0200
commitf5242a022f62b577e97faa2dc062936b107fe8b7 (patch)
treef663866eaa1b9159ee7c5c44fde559f7ebb48545
parent854e5fa8238938f41b27d94a1d6ca0ac6162b261 (diff)
downloademacs-f5242a022f62b577e97faa2dc062936b107fe8b7.tar.gz
emacs-f5242a022f62b577e97faa2dc062936b107fe8b7.zip
Fontise bytecomp Error lines more correctly
Fix suggested by Johan Bockgård. Fixes: debbugs:2490
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/progmodes/compile.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index dfea2f43e54..d503171245d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,9 @@
12011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org> 12011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
2 2
3 * progmodes/compile.el (compilation-error-regexp-alist-alist):
4 Fontise bytecomp Error lines more correctly (bug#2490). Fix
5 suggested by Johan Bockgård.
6
3 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient. 7 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
4 8
5 * dired-x.el (dired-guess-default): Use `delete-dups'. 9 * dired-x.el (dired-guess-default): Use `delete-dups'.
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 3a9463f0f97..d9316764895 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -251,7 +251,7 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2 nil (1))
251\\([0-9]*[^0-9\n]\\(?:[^\n :]\\| [^-/\n]\\|:[^ \n]\\)*?\\): ?\ 251\\([0-9]*[^0-9\n]\\(?:[^\n :]\\| [^-/\n]\\|:[^ \n]\\)*?\\): ?\
252\\([0-9]+\\)\\(?:[.:]\\([0-9]+\\)\\)?\ 252\\([0-9]+\\)\\(?:[.:]\\([0-9]+\\)\\)?\
253\\(?:-\\([0-9]+\\)?\\(?:\\.\\([0-9]+\\)\\)?\\)?:\ 253\\(?:-\\([0-9]+\\)?\\(?:\\.\\([0-9]+\\)\\)?\\)?:\
254\\(?: *\\(\\(?:Future\\|Runtime\\)?[Ww]arning\\|W:\\)\\|\ 254\\(?: *\\(\\(?:Future\\|Runtime\\)?[Ww]arning\\|W:\\|[Ee]rror\\)\\|\
255 *\\([Ii]nfo\\(?:\\>\\|rmationa?l?\\)\\|I:\\|instantiated from\\|[Nn]ote\\)\\|\ 255 *\\([Ii]nfo\\(?:\\>\\|rmationa?l?\\)\\|I:\\|instantiated from\\|[Nn]ote\\)\\|\
256\[0-9]?\\(?:[^0-9\n]\\|$\\)\\|[0-9][0-9][0-9]\\)" 256\[0-9]?\\(?:[^0-9\n]\\|$\\)\\|[0-9][0-9][0-9]\\)"
257 1 (2 . 4) (3 . 5) (6 . 7)) 257 1 (2 . 4) (3 . 5) (6 . 7))