diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-10-04 16:43:53 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-10-04 16:43:53 +0200 |
commit | 7701c24e36d516d5f371160e632d26c88ef8f7c6 (patch) | |
tree | 897a2882f1e6bd6b6c1f179a11acec834bd37479 /src/main.c | |
parent | 946c1eeafc01caa8525131f0939b901057221c82 (diff) | |
download | vim-git-7701c24e36d516d5f371160e632d26c88ef8f7c6.tar.gz |
updated for version 7.3.330v7.3.330
Problem: When longjmp() is invoked if the X server gives an error the state
is not properly restored.
Solution: Reset vgetc_busy. (Yukihiro Nakadaira)
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c index 5d3e69920..2044893df 100644 --- a/src/main.c +++ b/src/main.c @@ -1009,6 +1009,7 @@ main_loop(cmdwin, noexmode) skip_redraw = FALSE; RedrawingDisabled = 0; no_wait_return = 0; + vgetc_busy = 0; # ifdef FEAT_EVAL emsg_skip = 0; # endif |