diff src/term.c @ 21927:88070e222e82 v8.2.1513

patch 8.2.1513: cannot interrupt shell used for filename expansion Commit: https://github.com/vim/vim/commit/0981c8729e09551f2e8e6c159bc29f2c1d04019c Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 23 14:28:37 2020 +0200 patch 8.2.1513: cannot interrupt shell used for filename expansion Problem: Cannot interrupt shell used for filename expansion. (Dominique Pell?) Solution: Do set tmode in mch_delay(). (closes #6770)
author Bram Moolenaar <Bram@vim.org>
date Sun, 23 Aug 2020 14:30:05 +0200
parents 1d75baa22d9a
children 9bb1c984c4da
line wrap: on
line diff
--- a/src/term.c
+++ b/src/term.c
@@ -3598,7 +3598,7 @@ stoptermcap(void)
 	    {
 # ifdef UNIX
 		// Give the terminal a chance to respond.
-		mch_delay(100L, FALSE);
+		mch_delay(100L, 0);
 # endif
 # ifdef TCIFLUSH
 		// Discard data received but not read.