mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
updated for version 7.2-171
This commit is contained in:
@@ -4637,7 +4637,7 @@ do_sub(eap)
|
|||||||
|
|
||||||
if (do_ask)
|
if (do_ask)
|
||||||
{
|
{
|
||||||
int typed;
|
int typed = 0;
|
||||||
|
|
||||||
/* change State to CONFIRM, so that the mouse works
|
/* change State to CONFIRM, so that the mouse works
|
||||||
* properly */
|
* properly */
|
||||||
@@ -6553,6 +6553,7 @@ struct sign
|
|||||||
static sign_T *first_sign = NULL;
|
static sign_T *first_sign = NULL;
|
||||||
static int last_sign_typenr = MAX_TYPENR; /* is decremented */
|
static int last_sign_typenr = MAX_TYPENR; /* is decremented */
|
||||||
|
|
||||||
|
static int sign_cmd_idx __ARGS((char_u *begin_cmd, char_u *end_cmd));
|
||||||
static void sign_list_defined __ARGS((sign_T *sp));
|
static void sign_list_defined __ARGS((sign_T *sp));
|
||||||
static void sign_undefine __ARGS((sign_T *sp, sign_T *sp_prev));
|
static void sign_undefine __ARGS((sign_T *sp, sign_T *sp_prev));
|
||||||
|
|
||||||
@@ -6579,8 +6580,8 @@ static char *cmds[] = {
|
|||||||
*/
|
*/
|
||||||
static int
|
static int
|
||||||
sign_cmd_idx(begin_cmd, end_cmd)
|
sign_cmd_idx(begin_cmd, end_cmd)
|
||||||
char *begin_cmd; /* begin of sign subcmd */
|
char_u *begin_cmd; /* begin of sign subcmd */
|
||||||
char *end_cmd; /* just after sign subcmd */
|
char_u *end_cmd; /* just after sign subcmd */
|
||||||
{
|
{
|
||||||
int idx;
|
int idx;
|
||||||
char save = *end_cmd;
|
char save = *end_cmd;
|
||||||
|
@@ -676,6 +676,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 */
|
||||||
|
/**/
|
||||||
|
171,
|
||||||
/**/
|
/**/
|
||||||
170,
|
170,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user