I'm using the svn build rev 5160 on openSUSE 11.0, and I can't get block comments to work.
I'll have some code I want to comment, but when I put '/*' at the beggining, it only comments out the first line, and maybe the second.
For example, I have this class I want to comment out, and when I try only the first two lines got gray and commented:
/*class Exhaust {
private:
int x, y;
int frame;
SDL_Surface *type;
public:
Exhaust(int X, int Y);
void show();
bool is_dead();
};*/
I looked in all the options, as well as searched the forum and wiki, but couldn't find anything.