]> granicus.if.org Git - vim/commitdiff
updated for version 7.4.558 v7.4.558
authorBram Moolenaar <Bram@vim.org>
Wed, 17 Dec 2014 16:59:31 +0000 (17:59 +0100)
committerBram Moolenaar <Bram@vim.org>
Wed, 17 Dec 2014 16:59:31 +0000 (17:59 +0100)
Problem:    When the X server restarts Vim may get stuck.
Solution:   Destroy the application context and create it again.  (Issue 203)

src/os_unix.c
src/version.c

index ff8834527f672a32ad566432d79dd03df893a115..bcf11ddc7636d44eedafcfa5707251b8deadb656 100644 (file)
@@ -1617,6 +1617,17 @@ may_restore_clipboard()
     if (xterm_dpy_was_reset)
     {
        xterm_dpy_was_reset = FALSE;
+
+# ifndef LESSTIF_VERSION
+       /* This has been reported to avoid Vim getting stuck. */
+       if (app_context != (XtAppContext)NULL)
+       {
+           XtDestroyApplicationContext(app_context);
+           app_context = (XtAppContext)NULL;
+           x11_display = NULL; /* freed by XtDestroyApplicationContext() */
+       }
+# endif
+
        setup_term_clip();
        get_x11_title(FALSE);
     }
index 514193a93ac09d0137c21b8298f79ceb7458a5f3..4efee6ae8c71f6a77a62aac4d04528ac63f60c65 100644 (file)
@@ -741,6 +741,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    558,
 /**/
     557,
 /**/