Spaces in macro calls cause Apple's cpp to insert those spaces in the result.

#define IMAGE(TYPE, NAME) TYPE: "button"NAME".png"
	IMAGE(normal, "foo");
Results in:
	normal: "button" "foo"".png"
Which edje_cc cannot parse correctly as it views this as 2 arguments to the
normal keyword.


SVN revision: 13797
This commit is contained in:
rbdpngn 2005-03-20 06:32:06 +00:00 committed by rbdpngn
parent aa0ccade2d
commit a396ecc22f
1 changed files with 4 additions and 4 deletions