aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Pfeiffer2006-05-30 07:02:00 +0000
committerDaniel Pfeiffer2006-05-30 07:02:00 +0000
commitd14fd70ce977c14229ffc2d4945942f3ef00ce52 (patch)
tree7f47ec123edb91eafb5a635bb04d5a283c024dc6
parent8088bb2ca517e6c7942550f96714e84a692589f2 (diff)
downloademacs-d14fd70ce977c14229ffc2d4945942f3ef00ce52.tar.gz
emacs-d14fd70ce977c14229ffc2d4945942f3ef00ce52.zip
(compilation-error-regexp-alist-alist): Add makepp diagnostic.
-rw-r--r--lisp/ChangeLog8
-rw-r--r--lisp/progmodes/compile.el4
2 files changed, 10 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 0cb2920ddea..7568cacaea0 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,11 @@
12006-05-30 Daniel Pfeiffer <occitan@esperanto.org>
2
3 * files.el (auto-mode-alist): Add makepp suffix and optional mk on
4 Makeppfile.
5
6 * progmodes/compile.el (compilation-error-regexp-alist-alist): Add
7 makepp diagnostic.
8
12006-05-29 Richard Stallman <rms@gnu.org> 92006-05-29 Richard Stallman <rms@gnu.org>
2 10
3 * help.el (temp-buffer-max-height): Doc fix. 11 * help.el (temp-buffer-max-height): Doc fix.
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 527624bfc4e..799f108146f 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -228,7 +228,7 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2 nil (1))
228\\([0-9]+\\)\\([.:]?\\)\\([0-9]+\\)?\ 228\\([0-9]+\\)\\([.:]?\\)\\([0-9]+\\)?\
229\\(?:-\\(?:\\([0-9]+\\)\\3\\)?\\.?\\([0-9]+\\)?\\)?:\ 229\\(?:-\\(?:\\([0-9]+\\)\\3\\)?\\.?\\([0-9]+\\)?\\)?:\
230\\(?: *\\(\\(?:Future\\|Runtime\\)?[Ww]arning\\|W:\\)\\|\ 230\\(?: *\\(\\(?:Future\\|Runtime\\)?[Ww]arning\\|W:\\)\\|\
231 *\\([Ii]nfo\\(?:\\>\\|rmationa?l?\\)\\|I:\\)\\)?" 231 *\\([Ii]nfo\\(?:\\>\\|rmationa?l?\\)\\|I:\\|instantiated from\\)\\)?"
232 1 (2 . 5) (4 . 6) (7 . 8)) 232 1 (2 . 5) (4 . 6) (7 . 8))
233 233
234 (lcc 234 (lcc
@@ -236,7 +236,7 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2 nil (1))
236 2 3 4 (1)) 236 2 3 4 (1))
237 237
238 (makepp 238 (makepp
239 "^makepp: \\(?:\\(?:warning\\(:\\).*?\\|\\(Scanning\\|[LR]e?l?oading makefile\\) \\|.*?\\)\ 239 "^makepp: \\(?:\\(?:warning\\(:\\).*?\\|\\(Scanning\\|[LR]e?l?oading makefile\\|Imported\\) \\|.*?\\)\
240`\\(\\(\\S +?\\)\\(?::\\([0-9]+\\)\\)?\\)['(]\\)" 240`\\(\\(\\S +?\\)\\(?::\\([0-9]+\\)\\)?\\)['(]\\)"
241 4 5 nil (1 . 2) 3 241 4 5 nil (1 . 2) 3
242 ("`\\(\\(\\S +?\\)\\(?::\\([0-9]+\\)\\)?\\)['(]" nil nil 242 ("`\\(\\(\\S +?\\)\\(?::\\([0-9]+\\)\\)?\\)['(]" nil nil