Add support (and test) for an object-to-function chain with the parens in the content.
authorCarl Worth <cworth@cworth.org>
Thu, 27 May 2010 00:01:57 +0000 (17:01 -0700)
committerCarl Worth <cworth@cworth.org>
Thu, 27 May 2010 00:01:57 +0000 (17:01 -0700)
commit7db2402a8009772a3f10d19cfc7f30be9ee79295
treeafa47ca72dc2395f01fa84ecab4ee36754bdaa70
parent95951ea7bb8728cf54ae4136cb59d0af9e8a06bd
Add support (and test) for an object-to-function chain with the parens in the content.

That is, the following case:

#define foo(x) (x)
#define bar
bar(baz)

which now works with this (ugly) commit.

I definitely want to come up with something cleaner than this.
glcpp-parse.y
tests/055-define-chain-obj-to-func-parens-in-text.c [new file with mode: 0644]