I've done a number of read-thrus of my Uncrustify settings page over the past couple days but haven't found the setting. Perhaps a second pair of eyes knows what I am missing.
In my source code, the blank lines within functions are getting replaced by indenting spaces.
For example (the two blank lines there are simply just returns):
int foo()
{
return 1;
}
turns into:
int foo()
{
____
return 1;
____
}
(well, the "_
" you see there are actually blank spaces)
Which Uncrustify setting controls this behavior?