diff options
| author | Glenn Morris | 2008-02-11 04:11:00 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-02-11 04:11:00 +0000 |
| commit | 3dc4febd478531e1fa4805f8aa067575d312e277 (patch) | |
| tree | 0fa692a944c04ce9a321f6771f9f3d1b6331b96d | |
| parent | 4d1e89e319224e3da2302a5086ef18adea9c567b (diff) | |
| download | emacs-3dc4febd478531e1fa4805f8aa067575d312e277.tar.gz emacs-3dc4febd478531e1fa4805f8aa067575d312e277.zip | |
(compilation-error-regexp-alist-alist): Shorten some names.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/progmodes/compile.el | 10 |
2 files changed, 8 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f38cc8aaf40..20ef22aeba7 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2008-02-11 Glenn Morris <rgm@gnu.org> | 1 | 2008-02-11 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * progmodes/compile.el (compilation-error-regexp-alist-alist): | ||
| 4 | Shorten some names. | ||
| 5 | |||
| 3 | * ffap.el (ffap-rfc-directories): Add :version. | 6 | * ffap.el (ffap-rfc-directories): Add :version. |
| 4 | 7 | ||
| 5 | 2008-02-11 Chris Moore <christopher.ian.moore@gmail.com> | 8 | 2008-02-11 Chris Moore <christopher.ian.moore@gmail.com> |
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 3bd77481daa..f75c5a29bc8 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -346,7 +346,7 @@ File = \\(.+\\), Line = \\([0-9]+\\)\\(?:, Column = \\([0-9]+\\)\\)?" | |||
| 346 | (0 'default t) | 346 | (0 'default t) |
| 347 | (1 compilation-error-face prepend) (2 compilation-line-face prepend)) | 347 | (1 compilation-error-face prepend) (2 compilation-line-face prepend)) |
| 348 | 348 | ||
| 349 | (compilation-perl--Pod::Checker | 349 | (perl--Pod::Checker |
| 350 | ;; podchecker error messages, per Pod::Checker. | 350 | ;; podchecker error messages, per Pod::Checker. |
| 351 | ;; The style is from the Pod::Checker::poderror() function, eg. | 351 | ;; The style is from the Pod::Checker::poderror() function, eg. |
| 352 | ;; *** ERROR: Spurious text after =cut at line 193 in file foo.pm | 352 | ;; *** ERROR: Spurious text after =cut at line 193 in file foo.pm |
| @@ -364,14 +364,14 @@ File = \\(.+\\), Line = \\([0-9]+\\)\\(?:, Column = \\([0-9]+\\)\\)?" | |||
| 364 | "^\\*\\*\\* \\(?:ERROR\\|\\(WARNING\\)\\).* \\(?:at\\|on\\) line \ | 364 | "^\\*\\*\\* \\(?:ERROR\\|\\(WARNING\\)\\).* \\(?:at\\|on\\) line \ |
| 365 | \\([0-9]+\\) \\(?:.* \\)?in file \\([^ \t\n]+\\)" | 365 | \\([0-9]+\\) \\(?:.* \\)?in file \\([^ \t\n]+\\)" |
| 366 | 3 2 nil (1)) | 366 | 3 2 nil (1)) |
| 367 | (compilation-perl--Test | 367 | (perl--Test |
| 368 | ;; perl Test module error messages. | 368 | ;; perl Test module error messages. |
| 369 | ;; Style per the ok() function "$context", eg. | 369 | ;; Style per the ok() function "$context", eg. |
| 370 | ;; # Failed test 1 in foo.t at line 6 | 370 | ;; # Failed test 1 in foo.t at line 6 |
| 371 | ;; | 371 | ;; |
| 372 | "^# Failed test [0-9]+ in \\([^ \t\r\n]+\\) at line \\([0-9]+\\)" | 372 | "^# Failed test [0-9]+ in \\([^ \t\r\n]+\\) at line \\([0-9]+\\)" |
| 373 | 1 2) | 373 | 1 2) |
| 374 | (compilation-perl--Test2 | 374 | (perl--Test2 |
| 375 | ;; Or when comparing got/want values, | 375 | ;; Or when comparing got/want values, |
| 376 | ;; # Test 2 got: "xx" (t-compilation-perl-2.t at line 10) | 376 | ;; # Test 2 got: "xx" (t-compilation-perl-2.t at line 10) |
| 377 | ;; | 377 | ;; |
| @@ -382,7 +382,7 @@ File = \\(.+\\), Line = \\([0-9]+\\)\\(?:, Column = \\([0-9]+\\)\\)?" | |||
| 382 | "^\\(.*NOK.*\\)?# Test [0-9]+ got:.* (\\([^ \t\r\n]+\\) at line \ | 382 | "^\\(.*NOK.*\\)?# Test [0-9]+ got:.* (\\([^ \t\r\n]+\\) at line \ |
| 383 | \\([0-9]+\\))" | 383 | \\([0-9]+\\))" |
| 384 | 2 3) | 384 | 2 3) |
| 385 | (compilation-perl--Test::Harness | 385 | (perl--Test::Harness |
| 386 | ;; perl Test::Harness output, eg. | 386 | ;; perl Test::Harness output, eg. |
| 387 | ;; NOK 1# Test 1 got: "1234" (t/foo.t at line 46) | 387 | ;; NOK 1# Test 1 got: "1234" (t/foo.t at line 46) |
| 388 | ;; | 388 | ;; |
| @@ -393,7 +393,7 @@ File = \\(.+\\), Line = \\([0-9]+\\)\\(?:, Column = \\([0-9]+\\)\\)?" | |||
| 393 | ;; | 393 | ;; |
| 394 | "^.*NOK.* \\([^ \t\r\n]+\\) at line \\([0-9]+\\)" | 394 | "^.*NOK.* \\([^ \t\r\n]+\\) at line \\([0-9]+\\)" |
| 395 | 1 2) | 395 | 1 2) |
| 396 | (compilation-weblint | 396 | (weblint |
| 397 | ;; The style comes from HTML::Lint::Error::as_string(), eg. | 397 | ;; The style comes from HTML::Lint::Error::as_string(), eg. |
| 398 | ;; index.html (13:1) Unknown element <fdjsk> | 398 | ;; index.html (13:1) Unknown element <fdjsk> |
| 399 | ;; | 399 | ;; |