Can't junp to line in compiler output

General questions about using TextPad

Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard

Post Reply
lwidener
Posts: 3
Joined: Fri Mar 21, 2003 10:17 pm

Can't junp to line in compiler output

Post by lwidener »

I have been using regular expressions to jump to line numbers with previous compilers but am having problems making this one work. The error report looks like this:
I:\CCode\V3Code\Initcpu.c:160: error: `ETPU_PWM_FUNCTION_NUMBER' undeclared (first use in this function)
I:\CCode\V3Code\Initcpu.c:160: error: (Each undeclared identifier is reported only once
I:\CCode\V3Code\Initcpu.c:160: error: for each function it appears in.)
Steven at tech support suggested I try
^I:[^:]+:[0-9]+:[^:]+:
with posix selected. That doesn't do anything when I try it.
I normally don't use posix.
I'm not very fluent in posix and would appreciate whatever help with the regular expression I need.
Thanks
User avatar
MudGuard
Posts: 1295
Joined: Sun Mar 02, 2003 10:15 pm
Location: Munich, Germany
Contact:

Post by MudGuard »

You have to define the groups with (), that define the filename and the line number.
Post Reply