In the function token_custom_token_values(),
The default case is written as "case default:" which results looking for a type named 'default' instead of catching all other token types.
Solution:
Simply remove the 'case' should do the trick.
In the function token_custom_token_values(),
The default case is written as "case default:" which results looking for a type named 'default' instead of catching all other token types.
Solution:
Simply remove the 'case' should do the trick.
Comments
Comment #1
hanoiiRight, thanks, commited.