using VAX 1223 and VS .NET 2003
this is a strange one, since it only happens on some code blocks.
i have added a new cpp file to my project, and i paste in the text:
void func()
{
// make it easier to type / read
nSize = pstSpecimenLine->nSize;
ppszVector = pstSpecimenLine->ppszVector;
nColumn = 0;
fprintf(fp, "<TR>");
}
there are no blank lines at the top or the bottom of the file. now select the 6 lines of code inside the curly brackets, and press / to mark them as comments.
my file becomes:
void func()
{
// // make it easier to type / read
// nSize = pstSpecimenLine->nSize;
// ppszVector = pstSpecimenLine->ppszVector;
// nColumn = 0;
// fprintf(fp, "<TR>");
}
with the central 5 lines highlighted. some other blocks of code dont have this problem
this is rather unhelpful, since i use blank lines to structure my code into logical pieces.