mirror of
https://github.com/vim/vim.git
synced 2025-09-27 04:14: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
@@ -3248,6 +3248,8 @@ struct file_buffer
|
||||
#ifdef FEAT_EVAL
|
||||
char_u *b_p_tfu; // 'tagfunc' option value
|
||||
callback_T b_tfu_cb; // 'tagfunc' callback
|
||||
char_u *b_p_ffu; // 'findfunc' option value
|
||||
callback_T b_ffu_cb; // 'findfunc' callback
|
||||
#endif
|
||||
int b_p_eof; // 'endoffile'
|
||||
int b_p_eol; // 'endofline'
|
||||
@@ -3334,9 +3336,6 @@ struct file_buffer
|
||||
char_u *b_p_efm; // 'errorformat' local value
|
||||
#endif
|
||||
char_u *b_p_ep; // 'equalprg' local value
|
||||
#ifdef FEAT_EVAL
|
||||
char_u *b_p_fexpr; // 'findexpr' local value
|
||||
#endif
|
||||
char_u *b_p_path; // 'path' local value
|
||||
int b_p_ar; // 'autoread' local value
|
||||
char_u *b_p_tags; // 'tags' local value
|
||||
|
Reference in New Issue
Block a user