From dce7c91de95ff565a18535390a9abd4fe0a4a3f1 Mon Sep 17 00:00:00 2001
From: Bram Moolenaar <Bram@vim.org>
Date: Tue, 5 Nov 2013 17:40:52 +0100
Subject: [PATCH] updated for version 7.4.070 Problem:    Can't compile with
 tiny features. (Tony Mechelynck) Solution:   Add #ifdef.

---
 src/buffer.c  | 2 ++
 src/version.c | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/src/buffer.c b/src/buffer.c
index 8973b42aae..ddbcbc4b50 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -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
     }
 
     /*
diff --git a/src/version.c b/src/version.c
index fc4597d7b6..09f03b574a 100644
--- a/src/version.c
+++ b/src/version.c
@@ -738,6 +738,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    70,
 /**/
     69,
 /**/
-- 
GitLab