From: Bram Moolenaar Date: Tue, 19 Jun 2007 16:03:50 +0000 (+0000) Subject: updated for version 7.1-010 X-Git-Tag: v7.1.010 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dc3213d8554e977ee64a8a4464fc57825db106dc;p=vim updated for version 7.1-010 --- diff --git a/src/gui_gtk_x11.c b/src/gui_gtk_x11.c index 4a13aabf6..541240de9 100644 --- a/src/gui_gtk_x11.c +++ b/src/gui_gtk_x11.c @@ -2188,8 +2188,10 @@ write_session_file(char_u *filename) escaped_filename = vim_strsave_escaped(filename, escape_chars); if (escaped_filename == NULL) return FALSE; - mksession_cmdline = g_strconcat("mksession ", (char *)escaped_filename, NULL); + mksession_cmdline = g_strconcat("mksession ", (char *)escaped_filename, + NULL); vim_free(escaped_filename); + /* * Use a reasonable hardcoded set of 'sessionoptions' flags to avoid * unpredictable effects when the session is saved automatically. Also, @@ -2199,7 +2201,7 @@ write_session_file(char_u *filename) */ save_ssop_flags = ssop_flags; ssop_flags = (SSOP_BLANK|SSOP_CURDIR|SSOP_FOLDS|SSOP_GLOBALS - |SSOP_HELP|SSOP_OPTIONS|SSOP_WINSIZE); + |SSOP_HELP|SSOP_OPTIONS|SSOP_WINSIZE|SSOP_TABPAGES); do_cmdline_cmd((char_u *)"let Save_VV_this_session = v:this_session"); failed = (do_cmdline_cmd((char_u *)mksession_cmdline) == FAIL); diff --git a/src/version.c b/src/version.c index 1744d60eb..bebd3e9e6 100644 --- a/src/version.c +++ b/src/version.c @@ -666,6 +666,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 10, /**/ 9, /**/