NumberHighlighFix2.diff

Zbigniew Rebacz, 02/28/2015 08:58 PM

Download (436 Bytes)

View differences:

CodeEditor/CHighlight.cpp (kopia robocza)
69 69
	if(c == HighlightSetup::INK_CONST_FLOAT) {
70 70
		p += *p == '-' || *p == '+';
71 71
		while(IsDigit(*p)) p++;
72
		if(*p == 'f')
72
		if(*p == 'f' || *p == 'F')
73 73
			p++;
74 74
	}
75 75
	if(c == HighlightSetup::INK_CONST_OCT && p - t == 1)