comparison lisp/progmodes/compile.el @ 62964:6b3810cab95a

(compilation-error-regexp-alist-alist): Allow (...) within `...' for makepp messages.
author Daniel Pfeiffer <occitan@esperanto.org>
date Fri, 03 Jun 2005 08:41:20 +0000
parents c18eb4cd2ef7
children 3949ec3f5f5a 01137c1fdbe9
comparison
equal deleted inserted replaced
62963:fcacef2ed810 62964:6b3810cab95a
229 "^\\(?:E\\|\\(W\\)\\), \\([^(\n]+\\)(\\([0-9]+\\),[ \t]*\\([0-9]+\\)" 229 "^\\(?:E\\|\\(W\\)\\), \\([^(\n]+\\)(\\([0-9]+\\),[ \t]*\\([0-9]+\\)"
230 2 3 4 (1)) 230 2 3 4 (1))
231 231
232 (makepp 232 (makepp
233 "^makepp: \\(?:\\(?:warning\\(:\\).*?\\|\\(Scanning\\|[LR]e?l?oading makefile\\) \\|.*?\\)\ 233 "^makepp: \\(?:\\(?:warning\\(:\\).*?\\|\\(Scanning\\|[LR]e?l?oading makefile\\) \\|.*?\\)\
234 `\\(\\(\\S +?\\)\\(?::\\([0-9]+\\)\\)?\\)'\\)" 234 `\\(\\(\\S +?\\)\\(?::\\([0-9]+\\)\\)?\\)['(]\\)"
235 4 5 nil (1 . 2) 3 235 4 5 nil (1 . 2) 3
236 ("`\\(\\(\\S +?\\)\\(?::\\([0-9]+\\)\\)?\\)'" nil nil 236 ("`\\(\\(\\S +?\\)\\(?::\\([0-9]+\\)\\)?\\)['(]" nil nil
237 (2 compilation-info-face) 237 (2 compilation-info-face)
238 (3 compilation-line-face nil t) 238 (3 compilation-line-face nil t)
239 (1 (compilation-error-properties 2 3 nil nil nil 0 nil) 239 (1 (compilation-error-properties 2 3 nil nil nil 0 nil)
240 append))) 240 append)))
241 241