mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
updated for version 7.2-289
This commit is contained in:
parent
be2c9ae915
commit
f6f95d962f
@ -22,7 +22,7 @@
|
|||||||
* These buffers are used for storing:
|
* These buffers are used for storing:
|
||||||
* - stuffed characters: A command that is translated into another command.
|
* - stuffed characters: A command that is translated into another command.
|
||||||
* - redo characters: will redo the last change.
|
* - redo characters: will redo the last change.
|
||||||
* - recorded chracters: for the "q" command.
|
* - recorded characters: for the "q" command.
|
||||||
*
|
*
|
||||||
* The bytes are stored like in the typeahead buffer:
|
* The bytes are stored like in the typeahead buffer:
|
||||||
* - K_SPECIAL introduces a special key (two more bytes follow). A literal
|
* - K_SPECIAL introduces a special key (two more bytes follow). A literal
|
||||||
@ -1283,7 +1283,7 @@ free_typebuf()
|
|||||||
EMSG2(_(e_intern2), "Free typebuf 1");
|
EMSG2(_(e_intern2), "Free typebuf 1");
|
||||||
else
|
else
|
||||||
vim_free(typebuf.tb_buf);
|
vim_free(typebuf.tb_buf);
|
||||||
if (typebuf.tb_buf == noremapbuf_init)
|
if (typebuf.tb_noremap == noremapbuf_init)
|
||||||
EMSG2(_(e_intern2), "Free typebuf 2");
|
EMSG2(_(e_intern2), "Free typebuf 2");
|
||||||
else
|
else
|
||||||
vim_free(typebuf.tb_noremap);
|
vim_free(typebuf.tb_noremap);
|
||||||
@ -1516,7 +1516,7 @@ updatescript(c)
|
|||||||
* wanted.
|
* wanted.
|
||||||
* This translates escaped K_SPECIAL and CSI bytes to a K_SPECIAL or CSI byte.
|
* This translates escaped K_SPECIAL and CSI bytes to a K_SPECIAL or CSI byte.
|
||||||
* Collects the bytes of a multibyte character into the whole character.
|
* Collects the bytes of a multibyte character into the whole character.
|
||||||
* Returns the modifers in the global "mod_mask".
|
* Returns the modifiers in the global "mod_mask".
|
||||||
*/
|
*/
|
||||||
int
|
int
|
||||||
vgetc()
|
vgetc()
|
||||||
@ -3320,7 +3320,7 @@ do_map(maptype, arg, mode, abbrev)
|
|||||||
retval = 1;
|
retval = 1;
|
||||||
goto theend;
|
goto theend;
|
||||||
}
|
}
|
||||||
/* An abbrevation cannot contain white space. */
|
/* An abbreviation cannot contain white space. */
|
||||||
for (n = 0; n < len; ++n)
|
for (n = 0; n < len; ++n)
|
||||||
if (vim_iswhite(keys[n]))
|
if (vim_iswhite(keys[n]))
|
||||||
{
|
{
|
||||||
@ -4272,7 +4272,7 @@ check_abbr(c, ptr, col, mincol)
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* Check for word before the cursor: If it ends in a keyword char all
|
* Check for word before the cursor: If it ends in a keyword char all
|
||||||
* chars before it must be al keyword chars or non-keyword chars, but not
|
* chars before it must be keyword chars or non-keyword chars, but not
|
||||||
* white space. If it ends in a non-keyword char we accept any characters
|
* white space. If it ends in a non-keyword char we accept any characters
|
||||||
* before it except white space.
|
* before it except white space.
|
||||||
*/
|
*/
|
||||||
|
@ -681,6 +681,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
289,
|
||||||
/**/
|
/**/
|
||||||
288,
|
288,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user