0
0
mirror of https://github.com/vim/vim.git synced 2025-09-26 04:04:07 -04:00

updated for version 7.3.794

Problem:    Tiny build fails. (Tony Mechelynck)
Solution:   Adjust #ifdefs.
This commit is contained in:
Bram Moolenaar
2013-01-30 17:30:17 +01:00
parent 8ceb1735a2
commit a50e5866b0
2 changed files with 4 additions and 4 deletions

View File

@@ -939,19 +939,17 @@ vim_iswordp(p)
return GET_CHARTAB(curbuf, *p) != 0;
}
#if defined(FEAT_SYN_HL) || defined(PROTO)
int
vim_iswordp_buf(p, buf)
char_u *p;
buf_T *buf;
{
# ifdef FEAT_MBYTE
#ifdef FEAT_MBYTE
if (has_mbyte && MB_BYTE2LEN(*p) > 1)
return mb_get_class(p) >= 2;
# endif
#endif
return (GET_CHARTAB(buf, *p) != 0);
}
#endif
/*
* return TRUE if 'c' is a valid file-name character

View File

@@ -725,6 +725,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
794,
/**/
793,
/**/