From: Bram Moolenaar Date: Tue, 5 Nov 2013 16:40:52 +0000 (+0100) Subject: updated for version 7.4.070 X-Git-Tag: v7.4.070 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dce7c91de95ff565a18535390a9abd4fe0a4a3f1;p=vim 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 8973b42aa..ddbcbc4b5 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 fc4597d7b..09f03b574 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, /**/