In case of certain #define'd macros, there's a space just before line continuation
that the minimized-source lexer was missing to include, resulting in invalid stringize.
For example:
#define foo(x) x+7 #define bar(a,b) \ #x \ foo(b)
should result in "#x foo(b)", but actually results in "#xfoo(b)" (which is invalid).
Fixing it by keeping last but one space. I am confident that keeping the space is the right fix,
although I'm not sure if I've done it in the right way :)