updated for version 7.4.070
Problem:    Can't compile with tiny features. (Tony Mechelynck)
Solution:   Add #ifdef.
diff --git a/src/buffer.c b/src/buffer.c
index 8973b42..ddbcbc4 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -213,7 +213,9 @@
     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 fc4597d..09f03b5 100644
--- a/src/version.c
+++ b/src/version.c
@@ -739,6 +739,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    70,
+/**/
     69,
 /**/
     68,