comparison src/vim9.h @ 19864:8288884fdfe1 v8.2.0488

patch 8.2.0488: Vim9: compiling can break when using a lambda inside :def Commit: https://github.com/vim/vim/commit/05afceeddc4afbbca60e4e6a729a50d33d4b19f7 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Mar 31 23:32:31 2020 +0200 patch 8.2.0488: Vim9: compiling can break when using a lambda inside :def Problem: Vim9: Compiling can break when using a lambda inside :def. Solution: Do not keep a pointer to the dfunc_T for longer time.
author Bram Moolenaar <Bram@vim.org>
date Tue, 31 Mar 2020 23:45:04 +0200
parents 846fbbacce3a
children d4fa9db88d16
comparison
equal deleted inserted replaced
19863:b6f8f6d22e8e 19864:8288884fdfe1
255 255
256 #ifdef DEFINE_VIM9_GLOBALS 256 #ifdef DEFINE_VIM9_GLOBALS
257 // Functions defined with :def are stored in this growarray. 257 // Functions defined with :def are stored in this growarray.
258 // They are never removed, so that they can be found by index. 258 // They are never removed, so that they can be found by index.
259 // Deleted functions have the df_deleted flag set. 259 // Deleted functions have the df_deleted flag set.
260 garray_T def_functions = {0, 0, sizeof(dfunc_T), 200, NULL}; 260 garray_T def_functions = {0, 0, sizeof(dfunc_T), 50, NULL};
261 #else 261 #else
262 extern garray_T def_functions; 262 extern garray_T def_functions;
263 #endif 263 #endif
264 264