diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-03-18 20:25:31 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-03-18 20:25:31 +0000 |
commit | 4317d9b4867621ec572a3a4010587d59ecc51813 (patch) | |
tree | da053bbf9f210d8c406c070b6e8bafe01faeb5b3 /src/message.c | |
parent | a5319aed9bad7cd9094d2a8ba34e99270ccdbc0f (diff) | |
download | vim-git-4317d9b4867621ec572a3a4010587d59ecc51813.tar.gz |
updated for version 7.0061
Diffstat (limited to 'src/message.c')
-rw-r--r-- | src/message.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/message.c b/src/message.c index 9b0045d14..a813b6b65 100644 --- a/src/message.c +++ b/src/message.c @@ -920,7 +920,7 @@ wait_return(redraw) * CTRL-C, but we need to loop then. */ had_got_int = got_int; c = safe_vgetc(); - if (!global_busy) + if (had_got_int && !global_busy) got_int = FALSE; #ifdef FEAT_CLIPBOARD /* Strange way to allow copying (yanking) a modeless selection at |