Don't recalculate line indexes if number of lines doesn't change.

This commit is contained in:
Lauri Tulmin 2005-01-19 19:08:25 +00:00 committed by Alexandre Julliard
parent b1a0c6c3d7
commit 7b9fb6fff3
1 changed files with 1 additions and 1 deletions

View File

@ -1253,7 +1253,7 @@ static void EDIT_BuildLineDefs_ML(EDITSTATE *es, INT istart, INT iend, INT delta
es->line_count--;
}
}
else
else if (delta != 0)
{
while (current_line)
{