summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-11-05 17:40:52 +0100
committerBram Moolenaar <Bram@vim.org>2013-11-05 17:40:52 +0100
commitdce7c91de95ff565a18535390a9abd4fe0a4a3f1 (patch)
treef7caff45c339b712b8f79b31932819ed112c5171
parent6bcbcc59be58d0c3b3cd53ac105c6eb7d0b87f06 (diff)
updated for version 7.4.070v7.4.070
Problem: Can't compile with tiny features. (Tony Mechelynck) Solution: Add #ifdef.
-rw-r--r--src/buffer.c2
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 0 deletions
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
@@ -739,6 +739,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 70,
+/**/
69,
/**/
68,