From 7701c24e36d516d5f371160e632d26c88ef8f7c6 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 4 Oct 2011 16:43:53 +0200 Subject: [PATCH] updated for version 7.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) --- src/main.c | 1 + src/version.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/main.c b/src/main.c index 5d3e69920c..2044893df8 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 diff --git a/src/version.c b/src/version.c index edf6aaab5b..74a32d1d7c 100644 --- a/src/version.c +++ b/src/version.c @@ -709,6 +709,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 330, /**/ 329, /**/ -- 2.47.3