Skip to content
Snippets Groups Projects
Commit dce7c91d authored by Bram Moolenaar's avatar Bram Moolenaar
Browse files

updated for version 7.4.070

Problem:    Can't compile with tiny features. (Tony Mechelynck)
Solution:   Add #ifdef.
parent 6bcbcc59
No related branches found
Tags v7.4.070
No related merge requests found
......@@ -213,7 +213,9 @@ open_buffer(read_stdin, eap, flags)
if (curbuf->b_flags & BF_NEVERLOADED)
{
(void)buf_init_chartab(curbuf, FALSE);
#ifdef FEAT_CINDENT
parse_cino(curbuf);
#endif
}
/*
......
......@@ -738,6 +738,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
70,
/**/
69,
/**/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment