tags 435027 + patch Hope this patch won't introduce new bugs again. At least it pass the tcc test and is a rule really more specific.
-- Why Debian : http://www.debian.org/intro/why_debian
diff -Naur tcc/tcc.c tccbis/tcc.c
--- tcc/tcc.c 2007-06-25 16:02:41.000000000 +0200
+++ tccbis/tcc.c 2007-12-07 02:15:37.000000000 +0100
@@ -4118,6 +4118,13 @@
sa = s->next;
/* NOTE: empty args are allowed, except if no args */
for(;;) {
+ /* handle LINEFEED between '(' and ')' */
+ if (tok == TOK_LINEFEED)
+ {
+ (file->buf_ptr)++;
+ next_nomacro();
+ continue;
+ }
/* handle '()' case */
if (!args && !sa && tok == ')')
break;
signature.asc
Description: This is a digitally signed message part.

