Hi.
"Unsurround the block" does not move the ident level of the comments (at least for me). This ocurrs with comment wrapping on or off. For example, starting with:
{
//
// Single values take precedence.
//
resultp = SingleSearch(value);
if (!resultp)
{
//
// Next try a range search.
//
resultp = RangeSearch(value);
if (!resultp)
{
//
// Use the default contents.
//
resultp = &vDefaultContents;
}
}
return (*resultp);
}
If I unsurround this I end up with:
//
// Single values take precedence.
//
resultp = SingleSearch(value);
if (!resultp)
{
//
// Next try a range search.
//
resultp = RangeSearch(value);
if (!resultp)
{
//
// Use the default contents.
//
resultp = &vDefaultContents;
}
}
Cheers,
--
Greg.