aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2002-05-10 01:00:29 +0000
committerRichard M. Stallman2002-05-10 01:00:29 +0000
commit154b2b1008fac7c78938b6d32008e1c97ed0d094 (patch)
tree22e47368ce21f7abf6c1ef07c67b9b97af5569c6
parent1b93984e8fd5085addb55758e54665034fe702cf (diff)
downloademacs-154b2b1008fac7c78938b6d32008e1c97ed0d094.tar.gz
emacs-154b2b1008fac7c78938b6d32008e1c97ed0d094.zip
(compilation-error-regexp-alist):
New element to recognize Python error messages.
-rw-r--r--lisp/ChangeLog12
-rw-r--r--lisp/progmodes/compile.el4
2 files changed, 15 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 1b4c8b47abc..a946a4fcb8a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,11 @@
12002-05-09 Richard M. Stallman <rms@gnu.org>
2
3 * progmodes/compile.el (compilation-error-regexp-alist):
4 New element to recognize Python error messages.
5
6 * shell.el (shell-replace-by-expanded-directory):
7 If there's already a / at the end, don't add one.
8
12002-05-09 Colin Walters <walters@verbum.org> 92002-05-09 Colin Walters <walters@verbum.org>
2 10
3 * ibuffer.el (ibuffer-mode-map): Add :enable guards for 11 * ibuffer.el (ibuffer-mode-map): Add :enable guards for
@@ -22,7 +30,7 @@
22 `display-color-cells' unless the display class is one for which 30 `display-color-cells' unless the display class is one for which
23 that info is relevant. 31 that info is relevant.
24 32
252002-05-07 Simon Josefsson <jas@extundo.com> 332002-05-09 Simon Josefsson <jas@extundo.com>
26 34
27 * mail/smtpmail.el (smtpmail-send-it): Use user-mail-address from 35 * mail/smtpmail.el (smtpmail-send-it): Use user-mail-address from
28 calling buffer. 36 calling buffer.
@@ -62,6 +70,8 @@
62 70
632002-05-08 Richard M. Stallman <rms@gnu.org> 712002-05-08 Richard M. Stallman <rms@gnu.org>
64 72
73 * diff.el (diff-regexp-alist): Doc fix.
74
65 * mail/smtpmail.el (netrc-machine, netrc-get): Add autoloads. 75 * mail/smtpmail.el (netrc-machine, netrc-get): Add autoloads.
66 76
672002-05-08 Simon Marshall <simon@gnu.org> 772002-05-08 Simon Marshall <simon@gnu.org>
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index c1f8b9b345a..689c095f521 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -363,6 +363,10 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2)
363 (".*\"\\([^,\" \n\t]+\\)\", lines? \ 363 (".*\"\\([^,\" \n\t]+\\)\", lines? \
364\\([0-9]+\\)\\([\(.]\\([0-9]+\\)\)?\\)?[:., (-]" 1 2 4) 364\\([0-9]+\\)\\([\(.]\\([0-9]+\\)\)?\\)?[:., (-]" 1 2 4)
365 365
366 ;; Python:
367 ;; File "foobar.py", line 5, blah blah
368 ("^File \"\\([^,\" \n\t]+\\)\", line \\([0-9]+\\)," 1 2)
369
366 ;; Caml compiler: 370 ;; Caml compiler:
367 ;; File "foobar.ml", lines 5-8, characters 20-155: blah blah 371 ;; File "foobar.ml", lines 5-8, characters 20-155: blah blah
368 ("^File \"\\([^,\" \n\t]+\\)\", lines? \\([0-9]+\\)[-0-9]*, characters? \\([0-9]+\\)" 1 2 3) 372 ("^File \"\\([^,\" \n\t]+\\)\", lines? \\([0-9]+\\)[-0-9]*, characters? \\([0-9]+\\)" 1 2 3)