on 7/25/00 1:15 AM, Stefan Bodewig at [EMAIL PROTECTED] wrote:
> I use the following in my JDE setup in ~/.emacs:
>
> (require 'compile)
> (setq compilation-error-regexp-alist
> (append (list
> ;; works for jikes
> '("^\\s-*\\[[^]]*\\]\\s-*\\(.+\\):\\([0-9]+\\):\\([0-9]+\\):[0-9]+:[0-9]+:" 1
> 2 3)
> ;; works for javac
> ;; thanks to Barrie Treloar <[EMAIL PROTECTED]>
> '("^\\s-*\\[[^]]*\\]\\s-*\\(.+\\):\\([0-9]+\\):" 1 2))
> compilation-error-regexp-alist))
With elisp, all is possible.. Though quite frequently not pretty (though
prettier than perl <duck>) :)
This would be a great thing to put in the faq and in the distro.