Incorrect variable highlighting.
Posted: Thu Jun 13, 2013 11:47 pm
CodeLite 5.1 downloaded from sourceforge. Windows7.
Variable 'VertLabSz' is incorrect highlighted in the code below:
I've tried to upload attachment screenshot, but unsuccessfully. On this screenshot variable 'HorizLabSz' colored as 'Syntax Highlight/Customize/Local variables', but the 'VertLabSz' colored as 'Syntax Highlight/Customize/Identifier'.
Prostoy Paren
Variable 'VertLabSz' is incorrect highlighted in the code below:
Code: Select all
#include <stdio.h>
#define ERRVAL 0
int main(int argc, char **argv)
{
int HorizLabSz = ERRVAL, VertLabSz = ERRVAL;
printf( "%i, %i", HorizLabSz, VertLabSz);
return 0;
}
I've tried to upload attachment screenshot, but unsuccessfully. On this screenshot variable 'HorizLabSz' colored as 'Syntax Highlight/Customize/Local variables', but the 'VertLabSz' colored as 'Syntax Highlight/Customize/Identifier'.
Prostoy Paren