• R/O
  • SSH

vim: Commit

Mirror of the Vim source from https://github.com/vim/vim


Commit MetaInfo

Revision86079b930b3e8735933c9349e44184761bbf56b0 (tree)
Time2007-06-20 01:03:50
Authorvimboss
Commitervimboss

Log Message

updated for version 7.1-010

Change Summary

Incremental Difference

diff -r b090b216a832 -r 86079b930b3e src/gui_gtk_x11.c
--- a/src/gui_gtk_x11.c Tue Jun 19 15:44:58 2007 +0000
+++ b/src/gui_gtk_x11.c Tue Jun 19 16:03:50 2007 +0000
@@ -2188,8 +2188,10 @@
21882188 escaped_filename = vim_strsave_escaped(filename, escape_chars);
21892189 if (escaped_filename == NULL)
21902190 return FALSE;
2191- mksession_cmdline = g_strconcat("mksession ", (char *)escaped_filename, NULL);
2191+ mksession_cmdline = g_strconcat("mksession ", (char *)escaped_filename,
2192+ NULL);
21922193 vim_free(escaped_filename);
2194+
21932195 /*
21942196 * Use a reasonable hardcoded set of 'sessionoptions' flags to avoid
21952197 * unpredictable effects when the session is saved automatically. Also,
@@ -2199,7 +2201,7 @@
21992201 */
22002202 save_ssop_flags = ssop_flags;
22012203 ssop_flags = (SSOP_BLANK|SSOP_CURDIR|SSOP_FOLDS|SSOP_GLOBALS
2202- |SSOP_HELP|SSOP_OPTIONS|SSOP_WINSIZE);
2204+ |SSOP_HELP|SSOP_OPTIONS|SSOP_WINSIZE|SSOP_TABPAGES);
22032205
22042206 do_cmdline_cmd((char_u *)"let Save_VV_this_session = v:this_session");
22052207 failed = (do_cmdline_cmd((char_u *)mksession_cmdline) == FAIL);
diff -r b090b216a832 -r 86079b930b3e src/version.c
--- a/src/version.c Tue Jun 19 15:44:58 2007 +0000
+++ b/src/version.c Tue Jun 19 16:03:50 2007 +0000
@@ -667,6 +667,8 @@
667667 static int included_patches[] =
668668 { /* Add new patch number below this line */
669669 /**/
670+ 10,
671+/**/
670672 9,
671673 /**/
672674 8,
Show on old repository browser