Return-Path: Mailing-List: contact ant-dev-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list ant-dev@jakarta.apache.org Received: (qmail 81374 invoked from network); 17 Jul 2000 11:51:10 -0000 Received: from public.ndh.net (HELO public.ndh.com) (195.94.90.21) by locus.apache.org with SMTP; 17 Jul 2000 11:51:10 -0000 Received: from sbodewig.bost.de ([195.227.98.11]) by public.ndh.com (8.9.3/8.8.0) with ESMTP id NAA05432 for ; Mon, 17 Jul 2000 13:51:06 +0200 (MET DST) Received: (from bodewig@localhost) by sbodewig.bost.de (8.9.3/8.9.3) id NAA02548; Mon, 17 Jul 2000 13:51:07 +0200 X-Authentication-Warning: sbodewig.bost.de: bodewig set sender to bodewig@bost.de using -f To: ant-dev@jakarta.apache.org Subject: Re: Spurious Output References: From: Stefan Bodewig Date: 17 Jul 2000 13:51:07 +0200 Message-ID: Lines: 27 User-Agent: Gnus/5.0807 (Gnus v5.8.7) XEmacs/21.1 (Canyonlands) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii >>>>> "pd" == donaldp writes: PD> * emacs-friendly output (ie never decided upon method) >> I didn't understand your problems - but I haven't tricked JDE >> into using Ant for building projects yet, so I'm still running ant >> from outside of my XEmacs. pd> I can send you the .el file if you want :P. Let's swap 8^). XEmacs doesn't grok Jikes error messages unless I tell it how to parse them anyway: (add-hook 'compilation-mode-hook '(lambda () (add-to-list 'compilation-error-regexp-alist '("^\\(.+\\):\\([0-9]+\\):\\([0-9]+\\):[0-9]+:[0-9]+:$" 1 2 3)))) including the task stuff that would be: (add-hook 'compilation-mode-hook '(lambda () (add-to-list 'compilation-error-regexp-alist '("^\\s-*\\[[^\\]]\\]\\s-*\\(.+\\):\\([0-9]+\\):\\([0-9]+\\):[0-9]+:[0-9]+:$" 1 2 3)))) Should work - more or less untested - doesn't it? Stefan