mirror of
https://github.com/vim/vim
synced 2025-03-31 06:56:44 +02:00
updated for version 7.1-076
This commit is contained in:
parent
3185918f8c
commit
b0db569905
3 changed files with 6 additions and 2 deletions
|
@ -4493,7 +4493,8 @@ separate_nextcmd(eap)
|
|||
if (eap->argt & (USECTRLV | XFILE))
|
||||
++p; /* skip CTRL-V and next char */
|
||||
else
|
||||
STRCPY(p, p + 1); /* remove CTRL-V and skip next char */
|
||||
/* remove CTRL-V and skip next char */
|
||||
mch_memmove(p, p + 1, STRLEN(p));
|
||||
if (*p == NUL) /* stop at NUL after CTRL-V */
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -3760,7 +3760,8 @@ add_to_showcmd(c)
|
|||
extra_len = (int)STRLEN(p);
|
||||
overflow = old_len + extra_len - SHOWCMD_COLS;
|
||||
if (overflow > 0)
|
||||
STRCPY(showcmd_buf, showcmd_buf + overflow);
|
||||
mch_memmove(showcmd_buf, showcmd_buf + overflow,
|
||||
old_len - overflow + 1);
|
||||
STRCAT(showcmd_buf, p);
|
||||
|
||||
if (char_avail())
|
||||
|
|
|
@ -666,6 +666,8 @@ static char *(features[]) =
|
|||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
76,
|
||||
/**/
|
||||
75,
|
||||
/**/
|
||||
|
|
Loading…
Add table
Reference in a new issue