diff options
author | Bram Moolenaar <Bram@vim.org> | 2009-07-22 12:28:17 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2009-07-22 12:28:17 +0000 |
commit | 363cb67afa006f902f0a4c9a6669be03db2d1871 (patch) | |
tree | 5ae8c35a5ffd007d387bc5f685a54af6ed943b1b /src | |
parent | 20de1c20e61a62eb01d182d365f1889f9950c1a0 (diff) | |
download | vim-git-363cb67afa006f902f0a4c9a6669be03db2d1871.tar.gz |
updated for version 7.2-238v7.2.238
Diffstat (limited to 'src')
-rw-r--r-- | src/option.c | 27 | ||||
-rw-r--r-- | src/proto/option.pro | 1 | ||||
-rw-r--r-- | src/term.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
4 files changed, 29 insertions, 3 deletions
diff --git a/src/option.c b/src/option.c index 6eb790329..a400eb6f3 100644 --- a/src/option.c +++ b/src/option.c @@ -403,8 +403,9 @@ struct vimoption #define P_NUM 0x02 /* the option is numeric */ #define P_STRING 0x04 /* the option is a string */ #define P_ALLOCED 0x08 /* the string option is in allocated memory, - must use vim_free() when assigning new - value. Not set if default is the same. */ + must use free_string_option() when + assigning new value. Not set if default is + the same. */ #define P_EXPAND 0x10 /* environment expansion. NOTE: P_EXPAND can never be used for local or hidden options! */ #define P_NODEFAULT 0x40 /* don't set to default value */ @@ -8927,6 +8928,28 @@ free_termoptions() } /* + * Free the string for one term option, if it was allocated. + * Set the string to empty_option and clear allocated flag. + * "var" points to the option value. + */ + void +free_one_termoption(var) + char_u *var; +{ + struct vimoption *p; + + for (p = &options[0]; p->fullname != NULL; p++) + if (p->var == var) + { + if (p->flags & P_ALLOCED) + free_string_option(*(char_u **)(p->var)); + *(char_u **)(p->var) = empty_option; + p->flags &= ~P_ALLOCED; + break; + } +} + +/* * Set the terminal option defaults to the current value. * Used after setting the terminal name. */ diff --git a/src/proto/option.pro b/src/proto/option.pro index 39ee7be21..9c58c3e9d 100644 --- a/src/proto/option.pro +++ b/src/proto/option.pro @@ -29,6 +29,7 @@ int makeset __ARGS((FILE *fd, int opt_flags, int local_only)); int makefoldset __ARGS((FILE *fd)); void clear_termoptions __ARGS((void)); void free_termoptions __ARGS((void)); +void free_one_termoption __ARGS((char_u *var)); void set_term_defaults __ARGS((void)); void comp_col __ARGS((void)); char_u *get_equalprg __ARGS((void)); diff --git a/src/term.c b/src/term.c index 48e557ffd..f607575b1 100644 --- a/src/term.c +++ b/src/term.c @@ -2881,7 +2881,7 @@ ttest(pairs) /* if 'Sb' and 'AB' are not defined, reset "Co" */ if (*T_CSB == NUL && *T_CAB == NUL) - T_CCO = empty_option; + free_one_termoption(T_CCO); /* Set 'weirdinvert' according to value of 't_xs' */ p_wiv = (*T_XS != NUL); diff --git a/src/version.c b/src/version.c index 5f53901ec..9f59ffd76 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 */ /**/ + 238, +/**/ 237, /**/ 236, |