[Geany] regex repetition-operator operand invalid (was Re: ANN: New Release: Geany 0.14)

Nick Treleaven nick.treleaven at xxxxx
Tue Apr 22 14:18:51 UTC 2008


On Sun, 20 Apr 2008 11:45:30 +0200
Enrico Tröger <enrico.troeger at uvena.de> wrote:

> On Sun, 20 Apr 2008 09:44:16 +1200, Andy Elvey
> <andy.elvey at paradise.net.nz> wrote:
> 
> > regex: regcomp <h1>[    ]*(.*+)[        ]*</h1>:
> > repetition-operator operand invalid
> Huh again.
> Did you have opened any HTML files? 

I think this is the problem in tagmanager/html.c:

#define INNER_HEADING "[ \t]*(.*+)[ \t]*"

In (.*+) the + operator is not allowed to follow the * operator, it
doesn't make sense. Maybe you meant '(.+)'.

Regards,
Nick



More information about the Users mailing list