diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-08-01 22:16:43 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-08-01 22:16:43 +0200 |
commit | eef2102e20d24f5fbd1c9f53c7a35df61585c5ab (patch) | |
tree | 1bfa42d3637ea2b19021b1a7f6e859791f343ad4 /src/version.c | |
parent | e4218b9416bdcd78b9779a06258198573a0c369e (diff) | |
download | vim-git-eef2102e20d24f5fbd1c9f53c7a35df61585c5ab.tar.gz |
patch 8.2.1349: Vim9: can define a function with the name of an importv8.2.1349
Problem: Vim9: can define a function with the name of an import.
Solution: Disallow using an existing name. (closes #6585)
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 e715d8ae3..c98d2ab76 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 */ /**/ + 1349, +/**/ 1348, /**/ 1347, |