From: Bram Moolenaar Date: Tue, 2 Oct 2007 18:40:57 +0000 (+0000) Subject: updated for version 7.1-131 X-Git-Tag: v7.1.131 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=893de92ede66e8edbc9bbb47a8a1b664d5262e75;p=vim updated for version 7.1-131 --- diff --git a/src/option.c b/src/option.c index a8aded520..d0fc1b209 100644 --- a/src/option.c +++ b/src/option.c @@ -8753,6 +8753,8 @@ put_setbool(fd, cmd, name, value) char *name; int value; { + if (value < 0) /* global/local option using global value */ + return OK; if (fprintf(fd, "%s %s%s", cmd, value ? "" : "no", name) < 0 || put_eol(fd) < 0) return FAIL; diff --git a/src/version.c b/src/version.c index 0f960a732..a8de5b3f1 100644 --- a/src/version.c +++ b/src/version.c @@ -666,6 +666,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 131, /**/ 130, /**/