diff options
author | Bram Moolenaar <Bram@vim.org> | 2008-07-08 15:15:08 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2008-07-08 15:15:08 +0000 |
commit | b316376b4893ac3ae62f7f33c483b28b7fc147c0 (patch) | |
tree | e05415db492337bf479ac89635a33e648f6d96c3 | |
parent | c93e791042297f4e48c0ae0c61e0ad6c9434c032 (diff) | |
download | vim-b316376b4893ac3ae62f7f33c483b28b7fc147c0.zip |
updated for version 7.2a-019
-rw-r--r-- | src/option.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/option.c b/src/option.c index 8543b48e0..2d47af3d1 100644 --- a/src/option.c +++ b/src/option.c @@ -8222,7 +8222,7 @@ set_option_value(name, number, string, opt_flags) set_string_option(opt_idx, string, opt_flags); else { - varp = get_varp(&options[opt_idx]); + varp = get_varp_scope(&(options[opt_idx]), opt_flags); if (varp != NULL) /* hidden option is not changed */ { if (number == 0 && string != NULL) diff --git a/src/version.c b/src/version.c index ec51a6cce..d44083afb 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 */ /**/ + 19, +/**/ 18, /**/ 17, |