]> granicus.if.org Git - vim/commitdiff
updated for version 7.2.365 v7.2.365
authorBram Moolenaar <Bram@vim.org>
Wed, 17 Feb 2010 16:34:43 +0000 (17:34 +0100)
committerBram Moolenaar <Bram@vim.org>
Wed, 17 Feb 2010 16:34:43 +0000 (17:34 +0100)
Problem:    MS-Windows with MingW: "File->Save As" does not work. (John
            Marriott)
Solution:   Correctly fill in structure size. (Andy Kittner)

src/gui_w48.c
src/version.c

index ddaf1fba3bdcf294dfe0c9956d486d6b6754f034..477acfa94e62f86e2b9116e4bc8011ece8b21ee4 100644 (file)
@@ -3345,7 +3345,7 @@ gui_mch_browseW(
 #ifdef OPENFILENAME_SIZE_VERSION_400
     /* be compatible with Windows NT 4.0 */
     /* TODO: what to use for OPENFILENAMEW??? */
-    fileStruct.lStructSize = sizeof(OPENFILENAME_SIZE_VERSION_400);
+    fileStruct.lStructSize = OPENFILENAME_SIZE_VERSION_400;
 #else
     fileStruct.lStructSize = sizeof(fileStruct);
 #endif
@@ -3506,7 +3506,7 @@ gui_mch_browse(
     memset(&fileStruct, 0, sizeof(OPENFILENAME));
 #ifdef OPENFILENAME_SIZE_VERSION_400
     /* be compatible with Windows NT 4.0 */
-    fileStruct.lStructSize = sizeof(OPENFILENAME_SIZE_VERSION_400);
+    fileStruct.lStructSize = OPENFILENAME_SIZE_VERSION_400;
 #else
     fileStruct.lStructSize = sizeof(fileStruct);
 #endif
index 15a870d1a96abd087ef09b1dfdc888df150abd3b..0b4206e4888afd3821d0924d5c143eb6a2ebcc54 100644 (file)
@@ -681,6 +681,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    365,
 /**/
     364,
 /**/