mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-26 19:18:50 +00:00
* progmodes/flymake.el (flymake-split-string): Use
`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'.
This commit is contained in:
parent
f328b6c4ee
commit
e3c9b21e83
@ -1,3 +1,14 @@
|
||||
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
|
||||
|
@ -94,7 +94,7 @@
|
||||
(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))
|
||||
)
|
||||
)
|
||||
|
||||
@ -1243,7 +1243,8 @@ Whenether a buffer for master-file-name exists, use it as a source instead of re
|
||||
(" *\\(\\[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
|
||||
|
Loading…
Reference in New Issue
Block a user