diff options
author | Bram Moolenaar <Bram@vim.org> | 2023-01-24 15:07:04 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2023-01-24 15:07:04 +0000 |
commit | 62a6923470827acbf124df41134ae6df52f334e6 (patch) | |
tree | 52f1ea2c62400809c2a75075da2d33466a9fe62f /src/version.c | |
parent | b149d2279673aa89ab5e35958d05cc4bcc70f82a (diff) | |
download | vim-git-9.0.1240.tar.gz |
patch 9.0.1240: cannot access a private object member in a lambdav9.0.1240
Problem: Cannot access a private object member in a lambda defined inside
the class.
Solution: Go up the context stack to find the class. (closes #11866)
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 f21a1887a..4a3355c0b 100644 --- a/src/version.c +++ b/src/version.c @@ -696,6 +696,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1240, +/**/ 1239, /**/ 1238, |