Return-Path: Delivered-To: apmail-jakarta-ant-user-archive@jakarta.apache.org Received: (qmail 91154 invoked by uid 500); 19 Jun 2001 19:58:38 -0000 Mailing-List: contact ant-user-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: ant-user@jakarta.apache.org Delivered-To: mailing list ant-user@jakarta.apache.org Received: (qmail 91023 invoked from network); 19 Jun 2001 19:58:17 -0000 From: "Keith Kee" To: Subject: help with catching ant 1.4alpha error output Date: Tue, 19 Jun 2001 15:58:19 -0400 Message-ID: <003501c0f8fa$2fc2c560$ec01a8c0@keithpc> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2462.0000 In-Reply-To: <7948498DAE2ED51196090003473A783854D1FE@eg-msgmbx-b09.int.westgroup.com> Importance: Normal X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N Hi everyone, I am trying to use vim as my ide, and I have the following set in my .vimrc file. set makeprg="ant\ -emacs" set efm+=\ %#[javac]\ %#%f:%l:%c:%*\\d:%*\\d:\ %t%[%^:]%#:%m,\%A\ %#[javac]\ %f:%l:\ %m,%-Z\ %#[javac]\ %p^,%-C%.%# I have one syntax error in a java source. Ant produced such an error messange when I did a make: Buildfile: build.xml compile: Compiling 1 source file to D:\home\proj D:\home\proj\RadioButtonDemo.java:12: cannot resolve symbol symbol : class Strng location: class RadioButtonDemo static Strng pigString = "Pig"; ^ 1 error BUILD FAILED d:\home\proj\build.xml:10: Compile failed, messages should have been provided. Total time: 9 seconds Hit ENTER or type command to continue However, vim detected: (1 of 16): Buildfile: build.xml^M which seems to indicate that it has 16 errors due to the bad specification of the error format. Has the format changed with 1.4alpha? I don't seem to find anyone having problem with vim. Thanks keith