|
Karsten Hopp |
9a764b |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
9a764b |
Subject: Patch 7.3.330
|
|
Karsten Hopp |
9a764b |
Fcc: outbox
|
|
Karsten Hopp |
9a764b |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
9a764b |
Mime-Version: 1.0
|
|
Karsten Hopp |
9a764b |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
9a764b |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
9a764b |
------------
|
|
Karsten Hopp |
9a764b |
|
|
Karsten Hopp |
9a764b |
Patch 7.3.330
|
|
Karsten Hopp |
9a764b |
Problem: When longjmp() is invoked if the X server gives an error the state
|
|
Karsten Hopp |
9a764b |
is not properly restored.
|
|
Karsten Hopp |
9a764b |
Solution: Reset vgetc_busy. (Yukihiro Nakadaira)
|
|
Karsten Hopp |
9a764b |
Files: src/main.c
|
|
Karsten Hopp |
9a764b |
|
|
Karsten Hopp |
9a764b |
|
|
Karsten Hopp |
9a764b |
*** ../vim-7.3.329/src/main.c 2011-05-10 16:41:13.000000000 +0200
|
|
Karsten Hopp |
9a764b |
--- src/main.c 2011-10-04 16:41:03.000000000 +0200
|
|
Karsten Hopp |
9a764b |
***************
|
|
Karsten Hopp |
9a764b |
*** 1009,1014 ****
|
|
Karsten Hopp |
9a764b |
--- 1009,1015 ----
|
|
Karsten Hopp |
9a764b |
skip_redraw = FALSE;
|
|
Karsten Hopp |
9a764b |
RedrawingDisabled = 0;
|
|
Karsten Hopp |
9a764b |
no_wait_return = 0;
|
|
Karsten Hopp |
9a764b |
+ vgetc_busy = 0;
|
|
Karsten Hopp |
9a764b |
# ifdef FEAT_EVAL
|
|
Karsten Hopp |
9a764b |
emsg_skip = 0;
|
|
Karsten Hopp |
9a764b |
# endif
|
|
Karsten Hopp |
9a764b |
*** ../vim-7.3.329/src/version.c 2011-09-30 18:35:49.000000000 +0200
|
|
Karsten Hopp |
9a764b |
--- src/version.c 2011-10-04 16:42:23.000000000 +0200
|
|
Karsten Hopp |
9a764b |
***************
|
|
Karsten Hopp |
9a764b |
*** 711,712 ****
|
|
Karsten Hopp |
9a764b |
--- 711,714 ----
|
|
Karsten Hopp |
9a764b |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
9a764b |
+ /**/
|
|
Karsten Hopp |
9a764b |
+ 330,
|
|
Karsten Hopp |
9a764b |
/**/
|
|
Karsten Hopp |
9a764b |
|
|
Karsten Hopp |
9a764b |
--
|
|
Karsten Hopp |
9a764b |
Just remember...if the world didn't suck, we'd all fall off.
|
|
Karsten Hopp |
9a764b |
|
|
Karsten Hopp |
9a764b |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
9a764b |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
9a764b |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
9a764b |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|