diff options
author | Jakub Łuczyński <doubleloop@o2.pl> | 2020-02-10 00:33:26 -0800 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2020-02-10 00:36:26 -0800 |
commit | 6c5bbf07d988ef55e5e8ba8d70b62c1f0885261b (patch) | |
tree | 4d0c008fad40bf5c6f4516d3c84534b172f8d61f /src/nvim/lua/executor.c | |
parent | d34f042ed539565be3915745162eff13a8a0043a (diff) | |
download | rneovim-6c5bbf07d988ef55e5e8ba8d70b62c1f0885261b.tar.gz rneovim-6c5bbf07d988ef55e5e8ba8d70b62c1f0885261b.tar.bz2 rneovim-6c5bbf07d988ef55e5e8ba8d70b62c1f0885261b.zip |
eval.c: factor out eval/funcs.c #11828
close #11828
ref #5081
cf. vim patch 7.4.2063
Diffstat (limited to 'src/nvim/lua/executor.c')
-rw-r--r-- | src/nvim/lua/executor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/lua/executor.c b/src/nvim/lua/executor.c index 9a8347cf19..9e0063ebaa 100644 --- a/src/nvim/lua/executor.c +++ b/src/nvim/lua/executor.c @@ -528,7 +528,7 @@ int nlua_debug(lua_State *lstate) for (;;) { lua_settop(lstate, 0); typval_T input; - get_user_input(input_args, &input, false); + get_user_input(input_args, &input, false, false); msg_putchar('\n'); // Avoid outputting on input line. if (input.v_type != VAR_STRING || input.vval.v_string == NULL |