I've got errors that look like:
[cpp.bll/mail/javac]
L:\PCC601\impl\fes.02\pcc.impl\lwp\cpp.bll\mail\src\com\ibm\pcc\bll\mail\components\MailPreferences.java:354:
warning: createWmmDelegate() in
com.ibm.workplace.people.wmm.workspace.WmmDelegateFactory has been
deprecated
[cpp.bll/mail/javac] WmmDelegate wmmd =
WmmDelegateFactory.INSTANCE.createWmmDelegate();
[cpp.bll/mail/javac]
^
(three lines starting with [cpp.bll/mail/javac])
I'm not too concerned about the multiline syntax, I just want to be able to
parse the first line containing file and line number info. I played around
with this a bit and came up with:
set efm=[cpp.bll/mail/javac]\ %f:%l:\ %m
which works but only for the package cpp.bll/mail. What I really wanted was
something like:
set efm=[%s]\ %f:%l:\ %m
where it would just gobble up an arbitrary string between the braces, but
this doesn't work. So how should one do this?
Thanks,
Jack