mirror of
https://github.com/vim/vim.git
synced 2025-09-27 04:14:06 -04:00
updated for version 7.3.794
Problem: Tiny build fails. (Tony Mechelynck) Solution: Adjust #ifdefs.
This commit is contained in:
@@ -939,19 +939,17 @@ vim_iswordp(p)
|
|||||||
return GET_CHARTAB(curbuf, *p) != 0;
|
return GET_CHARTAB(curbuf, *p) != 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(FEAT_SYN_HL) || defined(PROTO)
|
|
||||||
int
|
int
|
||||||
vim_iswordp_buf(p, buf)
|
vim_iswordp_buf(p, buf)
|
||||||
char_u *p;
|
char_u *p;
|
||||||
buf_T *buf;
|
buf_T *buf;
|
||||||
{
|
{
|
||||||
# ifdef FEAT_MBYTE
|
#ifdef FEAT_MBYTE
|
||||||
if (has_mbyte && MB_BYTE2LEN(*p) > 1)
|
if (has_mbyte && MB_BYTE2LEN(*p) > 1)
|
||||||
return mb_get_class(p) >= 2;
|
return mb_get_class(p) >= 2;
|
||||||
# endif
|
#endif
|
||||||
return (GET_CHARTAB(buf, *p) != 0);
|
return (GET_CHARTAB(buf, *p) != 0);
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* return TRUE if 'c' is a valid file-name character
|
* return TRUE if 'c' is a valid file-name character
|
||||||
|
@@ -725,6 +725,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 */
|
||||||
|
/**/
|
||||||
|
794,
|
||||||
/**/
|
/**/
|
||||||
793,
|
793,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user