0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

updated for version 7.0-116

This commit is contained in:
Bram Moolenaar 2006-10-03 14:30:41 +00:00
parent 5948a57702
commit d9b8733023

View File

@ -666,6 +666,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
116,
/**/ /**/
115, 115,
/**/ /**/
@ -960,8 +962,12 @@ list_version()
# if defined(_MSC_VER) && (_MSC_VER <= 1010) # if defined(_MSC_VER) && (_MSC_VER <= 1010)
/* Only MS VC 4.1 and earlier can do Win32s */ /* Only MS VC 4.1 and earlier can do Win32s */
MSG_PUTS(_("\nMS-Windows 16/32 bit GUI version")); MSG_PUTS(_("\nMS-Windows 16/32 bit GUI version"));
# else
# ifdef _WIN64
MSG_PUTS(_("\nMS-Windows 64 bit GUI version"));
# else # else
MSG_PUTS(_("\nMS-Windows 32 bit GUI version")); MSG_PUTS(_("\nMS-Windows 32 bit GUI version"));
# endif
# endif # endif
if (gui_is_win32s()) if (gui_is_win32s())
MSG_PUTS(_(" in Win32s mode")); MSG_PUTS(_(" in Win32s mode"));