mirror of
https://github.com/vim/vim.git
synced 2025-09-27 04:14:06 -04:00
patch 8.0.1663: cannot build without multi-byte feature
Problem: Cannot build without multi-byte feature. Solution: Add #ifdef.
This commit is contained in:
@@ -5308,6 +5308,7 @@ skip_cmd_arg(
|
|||||||
return p;
|
return p;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if defined(FEAT_MBYTE) || defined(PROTO)
|
||||||
int
|
int
|
||||||
get_bad_opt(char_u *p, exarg_T *eap)
|
get_bad_opt(char_u *p, exarg_T *eap)
|
||||||
{
|
{
|
||||||
@@ -5319,6 +5320,7 @@ get_bad_opt(char_u *p, exarg_T *eap)
|
|||||||
eap->bad_char = *p;
|
eap->bad_char = *p;
|
||||||
return FAIL;
|
return FAIL;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Get "++opt=arg" argument.
|
* Get "++opt=arg" argument.
|
||||||
|
@@ -762,6 +762,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 */
|
||||||
|
/**/
|
||||||
|
1663,
|
||||||
/**/
|
/**/
|
||||||
1662,
|
1662,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user