From ddc401a91cc7d1dfb534172158a6b4bae4c0eb48 Mon Sep 17 00:00:00 2001 From: VVKot Date: Sun, 21 Nov 2021 07:24:07 +0000 Subject: vim-patch:8.2.2922: computing array length is done in various ways Problem: Computing array length is done in various ways. Solution: Use ARRAY_LENGTH everywhere. (Ken Takata, closes vim/vim#8305) https://github.com/vim/vim/commit/eeec2548785b2dd245a31ab25d7bde0f88ea1a6d --- src/nvim/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/main.c') diff --git a/src/nvim/main.c b/src/nvim/main.c index 921bc883cf..5cccb6ca71 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -677,7 +677,7 @@ void getout(int exitval) if (did_emsg) { // give the user a chance to read the (error) message no_wait_return = FALSE; - wait_return(FALSE); +// wait_return(FALSE); } // Position the cursor again, the autocommands may have moved it -- cgit