mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
updated for version 7.4.070
Problem: Can't compile with tiny features. (Tony Mechelynck) Solution: Add #ifdef.
This commit is contained in:
@@ -213,7 +213,9 @@ open_buffer(read_stdin, eap, flags)
|
|||||||
if (curbuf->b_flags & BF_NEVERLOADED)
|
if (curbuf->b_flags & BF_NEVERLOADED)
|
||||||
{
|
{
|
||||||
(void)buf_init_chartab(curbuf, FALSE);
|
(void)buf_init_chartab(curbuf, FALSE);
|
||||||
|
#ifdef FEAT_CINDENT
|
||||||
parse_cino(curbuf);
|
parse_cino(curbuf);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -738,6 +738,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 */
|
||||||
|
/**/
|
||||||
|
70,
|
||||||
/**/
|
/**/
|
||||||
69,
|
69,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user