I just updated to svn 6595 - Sept 15 2010 11:04:41 - linux, from jenslody and now all code (C++) in between conditional proprocessor commands' syntax highlight is gone .. all code is black .. does anyone know of a setting to disable that? It's quite annoying and is new to my build .. I can't find any options in settings anywhere about it ..
Example
//this code has normal highlighting
int a;
a = 1;
if(a == 1) {
#ifdef FAKEDEFINE
//this code is all black
cout << "WHY DONT I HAVE COLOR!!!???" << endl;
#endif
//back to normal color
cout << "I have color here though :)" << endl;
}