+4

Improper indentation breaks code folding

whee 13 year бұрын updated by adzenith 13 year бұрын 1
int foo(void) {

int quux = 2;
// comment, indented one space less than it should be
return quux;
}

will fold to

int foo(void) { [...]

// comment, indented one space less than it should be
return quux;
}