diff options
| author | Bram Moolenaar <Bram@vim.org> | 2009-06-16 15:50:33 +0000 |
|---|---|---|
| committer | Bram Moolenaar <Bram@vim.org> | 2009-06-16 15:50:33 +0000 |
| commit | 2a7b9ee0a7e7f6ba64097f061c7555c0847a62b0 (patch) | |
| tree | be70bbb4281b1b6a5d064bc4469ecd61e3bcd22c | |
| parent | adb09c2e691799163e4b498f689dab854870aca8 (diff) | |
| download | vim-git-2a7b9ee0a7e7f6ba64097f061c7555c0847a62b0.tar.gz | |
updated for version 7.2-208v7.2.208
| -rw-r--r-- | src/option.c | 4 | ||||
| -rw-r--r-- | src/version.c | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/option.c b/src/option.c index 141329121..6eb790329 100644 --- a/src/option.c +++ b/src/option.c @@ -4006,7 +4006,7 @@ do_set(arg, opt_flags) else { prefix = 1; - if (STRNCMP(arg, "no", 2) == 0) + if (STRNCMP(arg, "no", 2) == 0 && STRNCMP(arg, "novice", 6) != 0) { prefix = 0; arg += 2; @@ -9757,7 +9757,7 @@ set_context_in_set_cmd(xp, arg, opt_flags) } --p; } - if (STRNCMP(p, "no", 2) == 0) + if (STRNCMP(p, "no", 2) == 0 && STRNCMP(p, "novice", 6) != 0) { xp->xp_context = EXPAND_BOOL_SETTINGS; p += 2; diff --git a/src/version.c b/src/version.c index 2ec6a6a9d..044b2fdd4 100644 --- a/src/version.c +++ b/src/version.c @@ -677,6 +677,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 208, +/**/ 207, /**/ 206, |
