mirror of
https://github.com/vim/vim.git
synced 2025-10-21 08:24:06 -04:00
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Problem: Cannot assign a lambda to an option that takes a function. Solution: Automatically convert the lambda to a string. (Yegappan Lakshmanan, closes #9286)
This commit is contained in:
committed by
Bram Moolenaar
parent
40bcec1bac
commit
6409553b6e
@@ -1308,7 +1308,7 @@ tclsetoption(
|
||||
|
||||
option = (char_u *)Tcl_GetStringFromObj(objv[objn], NULL);
|
||||
++objn;
|
||||
gov = get_option_value(option, &lval, &sval, 0);
|
||||
gov = get_option_value(option, &lval, &sval, NULL, 0);
|
||||
err = TCL_OK;
|
||||
switch (gov)
|
||||
{
|
||||
|
Reference in New Issue
Block a user