On Tue, Jun 7, 2022 at 5:55 AM Luc Van Oostenryck <lucvoo@xxxxxxxxxx> wrote: > > TOKEN_ZERO_IDENTs are created during the evaluation of pre-processor > expressions but which otherwise are normal idents and were first tokenized > as TOKEN_IDENTs. > > As such, they could perfectly be displayed by show_token() but are not. > So, in error messages they are displayed as "unhandled token type '4'", > which is not at all informative. > > Fix this by letting show_token() process them like usual TOKEN_IDENTs. > Idem for quote_token(). Ack. I do wonder if it should be marked somehow as being that special case. The main reason for 'show_token()' is debugging, after all, and TOKEN_ZERO_IDENT does have magical properties in how it either silently expands to the constant '0', or it generates a warning about undefined preprocessor symbol. But considering that we've apparently reported it as "unhandled token type '4'" since 2005, I guess it's not exactly a big deal. Linus