diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-01-13 03:27:23 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-01-13 03:27:23 -0500 |
commit | 7f3999ac806daefa078b4db0781bfc1e190e135e (patch) | |
tree | 6386cdb6bf191873fc6ea1593a713e145810165a /src/nvim/misc1.c | |
parent | 5c87d40acdd02286baf492067031c93d93b7d389 (diff) | |
parent | 8eeda7169aa47881f0b6d697e291a1ef85c43e4e (diff) | |
download | rneovim-7f3999ac806daefa078b4db0781bfc1e190e135e.tar.gz rneovim-7f3999ac806daefa078b4db0781bfc1e190e135e.tar.bz2 rneovim-7f3999ac806daefa078b4db0781bfc1e190e135e.zip |
Merge pull request #3996 from justinmk/ctrlc
vim-patch:7.4.569, 7.4.573
Diffstat (limited to 'src/nvim/misc1.c')
-rw-r--r-- | src/nvim/misc1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/misc1.c b/src/nvim/misc1.c index 96ef6cbaef..b2cec82121 100644 --- a/src/nvim/misc1.c +++ b/src/nvim/misc1.c @@ -2352,7 +2352,7 @@ int get_keystroke(void) int save_mapped_ctrl_c = mapped_ctrl_c; int waited = 0; - mapped_ctrl_c = FALSE; /* mappings are not used here */ + mapped_ctrl_c = 0; // mappings are not used here for (;; ) { // flush output before waiting ui_flush(); |