diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-09-09 14:55:31 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-09-09 14:55:31 +0200 |
commit | 29a86ffee794bc1a0efde215c203cf9529047252 (patch) | |
tree | e718319396ca7a66a071c72fb02af88db2426e3f /src/version.c | |
parent | f842cd9e285afb9d86c6f9bff400e5e576f873c0 (diff) | |
download | vim-git-8.2.1641.tar.gz |
patch 8.2.1641: Vim9: cannot use 0 or 1 where a bool is expectedv8.2.1641
Problem: Vim9: cannot use 0 or 1 where a bool is expected.
Solution: Allow using 0 and 1 for a bool type. (closes #6903)
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 4f7de313a..7390d399c 100644 --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1641, +/**/ 1640, /**/ 1639, |