diff options
Diffstat (limited to 'src/nvim/getchar.c')
-rw-r--r-- | src/nvim/getchar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/getchar.c b/src/nvim/getchar.c index 12c08baead..299385cb17 100644 --- a/src/nvim/getchar.c +++ b/src/nvim/getchar.c @@ -2074,7 +2074,7 @@ void vungetc(int c) /// When peeking and not getting a character, reg_executing cannot be cleared /// yet, so set a flag to clear it later. -static void check_end_reg_executing(bool advance) +void check_end_reg_executing(bool advance) { if (reg_executing != 0 && (typebuf.tb_maplen == 0 || pending_end_reg_executing)) { if (advance) { |