From da0fb438496a7d721830bea51f0eb38d8c995883 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Sun, 6 Nov 2022 21:56:37 +0800 Subject: vim-patch:8.1.1200: old style comments in debugger source Problem: Old style comments in debugger source. Solution: Use new style comments. (Yegappan Lakshmanan, closes vim/vim#4286) https://github.com/vim/vim/commit/31fc39e47b3cc5e9ef4fa05943d42a4fb22de55e --- src/nvim/debugger.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/nvim/debugger.c b/src/nvim/debugger.c index 3e0cf82740..e7c376621b 100644 --- a/src/nvim/debugger.c +++ b/src/nvim/debugger.c @@ -114,6 +114,7 @@ void do_debug(char *cmd) for (;;) { msg_scroll = true; need_wait_return = false; + // Save the current typeahead buffer and replace it with an empty one. // This makes sure we get input from the user here and don't interfere // with the commands being executed. Reset "ex_normal_busy" to avoid -- cgit