emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r104755: flymake.el fix for bug#8866.


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r104755: flymake.el fix for bug#8866.
Date: Mon, 27 Jun 2011 00:23:27 -0700
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 104755
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Mon 2011-06-27 00:23:27 -0700
message:
  flymake.el fix for bug#8866.
  
  * lisp/progmodes/flymake.el (flymake-err-line-patterns):
  Allow for column numbers in the ant/javac pattern.
modified:
  lisp/ChangeLog
  lisp/progmodes/flymake.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-06-27 06:18:45 +0000
+++ b/lisp/ChangeLog    2011-06-27 07:23:27 +0000
@@ -1,29 +1,28 @@
+2011-06-27  Glenn Morris  <address@hidden>
+
+       * progmodes/flymake.el (flymake-err-line-patterns):
+       Allow for column numbers in the ant/javac pattern.  (Bug#8866)
+
 2011-06-27  Vincent Belaïche  <address@hidden>
 
-       * ses.el (ses-relocate-range): Keep rest of arguments for
-       ses-range.
+       * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
        (ses--clean-!, ses--clean-_): New functions.
        (ses-range): Add configurability of readout order, and conversion
        to Calc vector.
 
-2011-06-27  Vincent Belaïche  <address@hidden>
-
        * ses.el (ses-repair-cell-reference-all): New function.
        (ses-cell-symbol): Set macro as safe, so that it can be used in
        formulas.
 
-2011-06-27  Vincent Belaïche  <address@hidden>
-
        * ses.el:  Update cycle detection algorithm.
        (ses-localvars): Add ses--Dijkstra-attempt-nb and
-       ses--Dijkstra-weight-bound, and initial values thereof when
-       applicable.
+       ses--Dijkstra-weight-bound, and initial values thereof when applicable.
        (ses-set-localvars): New function.
        (ses-make-cell): Add property-list as a cell element.
        (ses-cell-property-get-fun, ses-cell-property-get)
        (ses-cell-property-delq-fun, ses-cell-property-set-fun)
-       (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun): New
-       functions.
+       (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
+       New functions.
        (ses-cell-property-set, ses-cell-property-pop)
        (ses-cell-property-get-handle): New macro.
        (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
@@ -39,8 +38,6 @@
        (ses-recalculate-cell): Update for cycle detection based on
        Dijkstra algorithm.
 
-2011-06-27  Vincent Belaïche  <address@hidden>
-
        * ses.el: Fix commenting and indenting convention.
 
 2011-06-27  Stefan Monnier  <address@hidden>

=== modified file 'lisp/progmodes/flymake.el'
--- a/lisp/progmodes/flymake.el 2011-06-25 18:21:00 +0000
+++ b/lisp/progmodes/flymake.el 2011-06-27 07:23:27 +0000
@@ -924,8 +924,8 @@
      ;; PHP
      ("\\(?:Parse\\|Fatal\\) error: \\(.*\\) in \\(.*\\) on line \\([0-9]+\\)" 
2 3 nil 1)
      ;; LaTeX warnings (fileless) ("\\(LaTeX \\(Warning\\|Error\\): .*\\) on 
input line \\([0-9]+\\)" 20 3 nil 1)
-     ;; ant/javac
-     (" *\\(\\[javac\\] *\\)?\\(\\([a-zA-Z]:\\)?[^:(\t\n]+\\)\:\\([0-9]+\\)\:[ 
\t\n]*\\(.+\\)"
+     ;; ant/javac.  Note this also matches gcc warnings!
+     (" *\\(\\[javac\\] 
*\\)?\\(\\([a-zA-Z]:\\)?[^:(\t\n]+\\)\:\\([0-9]+\\)\\(?:\:[0-9]+\\)?\:[ 
\t\n]*\\(.+\\)"
       2 4 nil 5))
    ;; compilation-error-regexp-alist)
    (flymake-reformat-err-line-patterns-from-compile-el 
compilation-error-regexp-alist-alist))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]