+2
C pragmas syntax highlight bug
If there is a string after the pragma with a comment between the quotation marks, all of the code after the closing quotation mark are highlighted as strings. with /* ... */ between the quotation marks
Code:
#pragma MESSAGES_COMMENT " /* Text 1234*/ "
int main()
{
printf("Hello World");
return 0;
}
Pictures
with /* ... */ between the quotation marks:
without /* ... */ between the quotation marks:
Service d'assistance aux clients par UserEcho
This will also mess up highlighting in the rest of the file.
#warning "This is a \
multiline string."