On Sun, 20 Apr 2008 11:45:30 +0200 Enrico Tröger <[EMAIL PROTECTED]> wrote:
> On Sun, 20 Apr 2008 09:44:16 +1200, Andy Elvey > <[EMAIL PROTECTED]> 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 _______________________________________________ Geany mailing list [email protected] http://lists.uvena.de/cgi-bin/mailman/listinfo/geany
