Ken Takata wrote: > 2013/9/30 Mon 2:05:38 UTC+9 Bram Moolenaar wrote: > > Patch 7.4.044 (after 7.4.039) > > Problem: Can't build with old MSVC. (Wang Shoulin) > > Solution: Define OPEN_OH_ARGTYPE instead of using intptr_t directly. > > Files: src/os_mswin.c > > (snip) > > > + #if (_MSC_VER >= 1300) > > + # define OPEN_OH_ARGTYPE intptr_t > > + #else > > + # define OPEN_OH_ARGTYPE long > > + #endif > > MinGW also supports intptr_t, so condition for MinGW is needed.
Thanks, I'll include it soon. -- hundred-and-one symptoms of being an internet addict: 147. You finally give up smoking...because it made the monitor dirty. /// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ an exciting new programming language -- http://www.Zimbu.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
