diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-09-09 20:03:46 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-09-09 20:03:46 +0200 |
commit | 4ed124cc6c0c55385c3b2fed9f9357baf42edbcc (patch) | |
tree | f61059c92bfba6e8f8d0cca358b08a4a0c1e2275 /src/version.c | |
parent | 33e3346322e40b2877f63f2f37398832c7017e2f (diff) | |
download | vim-git-4ed124cc6c0c55385c3b2fed9f9357baf42edbcc.tar.gz |
patch 8.2.1647: Vim9: result of expression with && and || is not a boolv8.2.1647
Problem: Vim9: result of expression with && and || cannot be assigned to a
bool variable.
Solution: Add the TTFLAG_BOOL_OK flag and convert the value if needed.
Diffstat (limited to 'src/version.c')
-rw-r--r-- | src/version.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/version.c b/src/version.c index 81df0bbbe..5cb8df08e 100644 --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1647, +/**/ 1646, /**/ 1645, |