commit | 893de92ede66e8edbc9bbb47a8a1b664d5262e75 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Tue Oct 02 18:40:57 2007 +0000 |
committer | Bram Moolenaar <Bram@vim.org> | Tue Oct 02 18:40:57 2007 +0000 |
tree | 253313cd7454ef14f101f1ed694e6a2718633dfa | |
parent | fecb6605787c62acbc0451e3f141357659458145 [diff] [blame] |
updated for version 7.1-131
diff --git a/src/option.c b/src/option.c index a8aded5..d0fc1b2 100644 --- a/src/option.c +++ b/src/option.c
@@ -8753,6 +8753,8 @@ 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;