tccpp.c: fix ##-in-macros logic
commit3a922ad2ba5298e0a84b33cce7fe4bd2dc9622c2
authorPhilip <pipcet@gmail.com>
Sat, 2 May 2015 12:14:14 +0000 (2 12:14 +0000)
committerPhilip <pipcet@gmail.com>
Sat, 2 May 2015 12:14:14 +0000 (2 12:14 +0000)
tree180b4a7499ed6353352b244f2fb1285ec5af213e
parenta6b94eff79d64e74505a40fb1d70d60e97d7c1f6
tccpp.c: fix ##-in-macros logic

The old code had an inverted condition, so

    #define a(b)## b

would be accepted while

    #define a(b,c) b ## ## c

would be rejected with the confusing error message "'##' invalid at
start of macro".
tccpp.c