Kevin Ryde <user42 at zip.com.au>
(compilation-error-regexp-alist-alist): For perl, allow "during global destruction" at end.
This commit is contained in:
parent
97ff09b34c
commit
70b79a6011
3 changed files with 14 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2008-01-08 Kevin Ryde <user42@zip.com.au>
|
||||
|
||||
* compilation.txt (perl): Add a "during global destruction" sample.
|
||||
|
||||
2008-01-08 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* calccard.tex, cs-dired-ref.tex, cs-refcard.tex, cs-survival.tex:
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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\
|
||||
|
|
Loading…
Add table
Reference in a new issue