commit | 554d0313022c3977c71f7dcbc5c841ef43d988a6 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Thu Jan 05 19:59:18 2023 +0000 |
committer | Bram Moolenaar <Bram@vim.org> | Thu Jan 05 19:59:18 2023 +0000 |
tree | e21ee06542388f5757b04f8cd987cfada2932db1 | |
parent | cf760d50dceb46bd583321c210b88b92360eb959 [diff] [blame] |
patch 9.0.1150: :interface is not implemented yet Problem: :interface is not implemented yet. Solution: Implement the basics of :interface.
diff --git a/src/vim9compile.c b/src/vim9compile.c index 1f26437..d8e4ae6 100644 --- a/src/vim9compile.c +++ b/src/vim9compile.c
@@ -991,7 +991,7 @@ int save_KeyTyped = KeyTyped; KeyTyped = FALSE; - ufunc = define_function(eap, lambda_name, lines_to_free, FALSE); + ufunc = define_function(eap, lambda_name, lines_to_free, 0); KeyTyped = save_KeyTyped;