vi: fix yet another vda's thinko

This commit is contained in:
Denis Vlasenko 2008-06-24 14:10:41 +00:00
parent 5ec6132c98
commit 70685bd022

View File

@ -1894,6 +1894,7 @@ static char *text_hole_make(char *p, int size) // at "p", make a 'size' byte hol
p = new_text + (p - text);
text = new_text;
}
memmove(p + size, p, end - p);
memset(p, ' ', size); // clear new hole
file_modified++;
return p;