From 24a329b53aa3be03ed79768cca04d63d6bb93891 Mon Sep 17 00:00:00 2001 From: Michael Ennen Date: Sun, 22 May 2016 01:33:27 -0700 Subject: vim-patch:7.4.1151 Problem: Missing change to eval.c Solution: Also change feedkeys(). https://github.com/vim/vim/commit/5f8a14b9dea094b8bbab94cfc1e8da8e633fbc01 --- src/nvim/ex_docmd.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/nvim/ex_docmd.c') diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c index c0d5c37bc9..3f28435ec0 100644 --- a/src/nvim/ex_docmd.c +++ b/src/nvim/ex_docmd.c @@ -7863,7 +7863,10 @@ void exec_normal_cmd(char_u *cmd, int remap, bool silent) exec_normal(false); } -void exec_normal(int was_typed) +/// Execute normal_cmd() until there is no typeahead left. +/// +/// @param was_typed whether or not something was typed +void exec_normal(bool was_typed) { oparg_T oa; -- cgit