summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2006-06-23 15:59:09 +0000
committervimboss <devnull@localhost>2006-06-23 15:59:09 +0000
commit72f81507bdbcbd3ebd149dd5797a36d98f21c43a (patch)
tree47c659b579a622bbee395a24849b50d689ac2810
parente4b7276d0f33dd60a5e7b96518d5f67f2a3f3b94 (diff)
downloadvim-72f81507bdbcbd3ebd149dd5797a36d98f21c43a.tar.gz
updated for version 7.0-034v7.0.034v7-0-034
-rw-r--r--src/edit.c7
-rw-r--r--src/version.c2
2 files changed, 2 insertions, 7 deletions
diff --git a/src/edit.c b/src/edit.c
index 8d6c32a2..3f933c14 100644
--- a/src/edit.c
+++ b/src/edit.c
@@ -3020,9 +3020,6 @@ ins_compl_bs()
if ((int)(p - line) - (int)compl_col <= 0)
return K_BS;
- /* For redo we need to repeat this backspace. */
- AppendCharToRedobuff(K_BS);
-
/* Deleted more than what was used to find matches or didn't finish
* finding all matches: need to look for matches all over again. */
if (curwin->w_cursor.col <= compl_col + compl_length
@@ -3122,10 +3119,6 @@ ins_compl_addleader(c)
#endif
ins_char(c);
- /* For redo we need to count this character so that the number of
- * backspaces is correct. */
- AppendCharToRedobuff(c);
-
/* If we didn't complete finding matches we must search again. */
if (compl_was_interrupted)
ins_compl_restart();
diff --git a/src/version.c b/src/version.c
index d1d2a770..c978d009 100644
--- a/src/version.c
+++ b/src/version.c
@@ -667,6 +667,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 34,
+/**/
33,
/**/
32,