X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=token.c;h=30f529d018b95084e621a18c99cf272df071e5b7;hp=124179fc8013e38372bc829c7632fb7895dd9180;hb=3c68061b9cd5cc9b67d602f3f5b621efe1e844d8;hpb=be5c1cb1a3ca24f29789437675fa8cd22e1edd45 diff --git a/token.c b/token.c index 124179f..30f529d 100644 --- a/token.c +++ b/token.c @@ -314,10 +314,10 @@ int ExpandMacro(char * src, char * dest, int destsiz) if (dst >= edst) goto overflow; - // Skip comments in case a loose @ or \ is in there - // In that case the tokeniser was trying to expand it. - if (*s == '*' || *s == ';' || ((*s == '/') && (*(s + 1) == '/'))) - goto skipcomments; + // Skip comments in case a loose @ or \ is in there + // In that case the tokeniser was trying to expand it. + if (*s == '*' || *s == ';' || ((*s == '/') && (*(s + 1) == '/'))) + goto skipcomments; *dst++ = *s++; }