mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 9.1.0831: 'findexpr' can't be used as lambad or Funcref
Problem: 'findexpr' can't be used for lambads (Justin Keyes) Solution: Replace the findexpr option with the findfunc option (Yegappan Lakshmanan) related: #15905 closes: #15976 Signed-off-by: Yegappan Lakshmanan <yegappan@yahoo.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
committed by
Christian Brabandt
parent
0b8176dff2
commit
a13f3a4f5d
@@ -2412,7 +2412,6 @@ free_buf_options(
|
||||
clear_string_option(&buf->b_p_fp);
|
||||
#if defined(FEAT_EVAL)
|
||||
clear_string_option(&buf->b_p_fex);
|
||||
clear_string_option(&buf->b_p_fexpr);
|
||||
#endif
|
||||
#ifdef FEAT_CRYPT
|
||||
# ifdef FEAT_SODIUM
|
||||
@@ -2485,6 +2484,8 @@ free_buf_options(
|
||||
#ifdef FEAT_EVAL
|
||||
clear_string_option(&buf->b_p_tfu);
|
||||
free_callback(&buf->b_tfu_cb);
|
||||
clear_string_option(&buf->b_p_ffu);
|
||||
free_callback(&buf->b_ffu_cb);
|
||||
#endif
|
||||
clear_string_option(&buf->b_p_dict);
|
||||
clear_string_option(&buf->b_p_tsr);
|
||||
|
Reference in New Issue
Block a user