diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-02-06 16:26:26 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-02-06 16:26:26 +0100 |
commit | 309379fc989a4f3337c9cf3361ab6eb9a456c626 (patch) | |
tree | b2e09c942df46345f1e6f7b0c292153e37b9c18f /src/charset.c | |
parent | 530e7dfafd7e951ac36e39c87bf72ebdb4caa428 (diff) | |
download | vim-git-309379fc989a4f3337c9cf3361ab6eb9a456c626.tar.gz |
updated for version 7.3.802v7.3.802
Problem: After setting 'isk' to a value ending in a comma appending to the
option fails.
Solution: Disallow a trailing comma for 'isk' and similar options.
Diffstat (limited to 'src/charset.c')
-rw-r--r-- | src/charset.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/charset.c b/src/charset.c index b5dcfac1b..fd4b500be 100644 --- a/src/charset.c +++ b/src/charset.c @@ -284,7 +284,12 @@ buf_init_chartab(buf, global) } ++c; } + + c = *p; p = skip_to_option_part(p); + if (c == ',' && *p == NUL) + /* Trailing comma is not allowed. */ + return FAIL; } } chartab_initialized = TRUE; |