1
0
forked from aniani/vim

updated for version 7.0177

This commit is contained in:
Bram Moolenaar
2005-12-28 22:39:57 +00:00
parent cc984263d7
commit ebefac63f3
23 changed files with 419 additions and 67 deletions

View File

@@ -2657,7 +2657,7 @@ ins_compl_prep(c)
}
for (temp = 0; p[temp]; ++temp)
AppendCharToRedobuff(K_BS);
AppendToRedobuffLit(ptr);
AppendToRedobuffLit(ptr, -1);
}
#ifdef FEAT_CINDENT
@@ -4240,7 +4240,7 @@ insert_special(c, allow_modmask, ctrlv)
return;
p[len - 1] = NUL;
ins_str(p);
AppendToRedobuffLit(p);
AppendToRedobuffLit(p, -1);
ctrlv = FALSE;
}
}
@@ -4756,7 +4756,7 @@ insertchar(c, flags, second_indent)
else
i = 0;
if (buf[i] != NUL)
AppendToRedobuffLit(buf + i);
AppendToRedobuffLit(buf + i, -1);
}
else
{