diff options
author | Glenn Morris <rgm@gnu.org> | 2008-01-08 07:54:04 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-01-08 07:54:04 +0000 |
commit | 70b79a60116857edc09f2a08186ef39fade3d10a (patch) | |
tree | 22202b7fa3cec0a43fd9e454e4b51fd360f3e962 /lisp | |
parent | 97ff09b34cd3b9ee4343637b4e5b21f8bd0685bf (diff) | |
download | emacs-70b79a60116857edc09f2a08186ef39fade3d10a.tar.gz emacs-70b79a60116857edc09f2a08186ef39fade3d10a.tar.bz2 emacs-70b79a60116857edc09f2a08186ef39fade3d10a.zip |
Kevin Ryde <user42 at zip.com.au>
(compilation-error-regexp-alist-alist): For perl, allow "during global
destruction" at end.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/progmodes/compile.el | 6 |
2 files changed, 10 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f375e101d6c..4e750cb14c0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2008-01-08 Kevin Ryde <user42@zip.com.au> + + * progmodes/compile.el (compilation-error-regexp-alist-alist): + For perl, allow "during global destruction" at end. + 2008-01-08 Glenn Morris <rgm@gnu.org> * diff-mode.el (diff-end-of-hunk): Don't match empty lines in diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 89f01392978..1fd0074dd41 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -273,8 +273,12 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2 nil (1)) \\(?:,\\| in\\| of\\)? file \\(.*?\\):?$" 3 1 2) + ;; "during global destruction": This comes out under "use + ;; warnings" in recent perl when breaking circular references + ;; during program or thread exit. (perl - " at \\([^ \n]+\\) line \\([0-9]+\\)\\(?:[,.]\\|$\\)" 1 2) + " at \\([^ \n]+\\) line \\([0-9]+\\)\\(?:[,.]\\|$\\| \ +during global destruction\\.$\\)" 1 2) (rxp "^\\(?:Error\\|Warnin\\(g\\)\\):.*\n.* line \\([0-9]+\\) char\ |