`flymake-split-string-remove-empty-edges' in any case.
* progmodes/flymake.el (flymake-err-line-patterns):
Use `compilation-error-regexp-alist-alist' instead of
`compilation-error-regexp-alist'.
+2004-10-26 Pavel Kobiakov <pk_at_work@yahoo.com>
+
+ * progmodes/flymake.el (flymake-split-string): Use
+ `flymake-split-string-remove-empty-edges' in any case.
+
+2004-10-26 Masatake YAMATO <jet@gyve.org>
+
+ * progmodes/flymake.el (flymake-err-line-patterns):
+ Use `compilation-error-regexp-alist-alist' instead of
+ `compilation-error-regexp-alist'.
+
2004-10-25 Jay Belanger <belanger@truman.edu>
* calc/calc-incom.el (calc-digit-dots): Inhibit read-only before
(defun flymake-split-string(str pattern)
(cond
((equal flymake-emacs 'xemacs) (flymake-split-string-remove-empty-edges str pattern))
- (t (split-string str pattern))
+ (t (flymake-split-string-remove-empty-edges str pattern))
)
)
(" *\\(\\[javac\\]\\)? *\\(\\([a-zA-Z]:\\)?[^:(\t\n]+\\)\:\\([0-9]+\\)\:[ \t\n]*\\(.+\\)"
2 4 nil 5)
)
- compilation-error-regexp-alist)
+ ;; compilation-error-regexp-alist)
+ (mapcar (lambda (x) (cdr x)) compilation-error-regexp-alist-alist))
"patterns for matching error/warning lines, (regexp file-idx line-idx err-text-idx)"
)
;(defcustom flymake-err-line-patterns