comparison src/globals.h @ 12066:8ad282dee649 v8.0.0913

patch 8.0.0913: MS-Windows: CTRL-C kills shell in terminal window commit https://github.com/vim/vim/commit/9698ad7201ca1a3acec69679f1ab8b15323ff406 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Aug 12 14:52:15 2017 +0200 patch 8.0.0913: MS-Windows: CTRL-C kills shell in terminal window Problem: MS-Windows: CTRL-C kills shell in terminal window instead of the command running in the shell. Solution: Make CTRL-C only send a CTRL_C_EVENT and have CTRL-BREAK kill the job. (partly by Yasuhiro Matsumoto, closes #1962)
author Christian Brabandt <cb@256bit.org>
date Sat, 12 Aug 2017 15:00:04 +0200
parents 5cd9ba96561d
children 903cea6f627c
comparison
equal deleted inserted replaced
12065:78404a915726 12066:8ad282dee649
1669 1669
1670 /* Used for checking if local variables or arguments used in a lambda. */ 1670 /* Used for checking if local variables or arguments used in a lambda. */
1671 EXTERN int *eval_lavars_used INIT(= NULL); 1671 EXTERN int *eval_lavars_used INIT(= NULL);
1672 #endif 1672 #endif
1673 1673
1674 #ifdef WIN3264
1675 EXTERN int ctrl_break_was_pressed = FALSE;
1676 #endif
1677
1674 /* 1678 /*
1675 * Optional Farsi support. Include it here, so EXTERN and INIT are defined. 1679 * Optional Farsi support. Include it here, so EXTERN and INIT are defined.
1676 */ 1680 */
1677 #ifdef FEAT_FKMAP 1681 #ifdef FEAT_FKMAP
1678 # include "farsi.h" 1682 # include "farsi.h"