updated for version 7.1-320
diff --git a/src/version.c b/src/version.c
index 5a3f014..be03761 100644
--- a/src/version.c
+++ b/src/version.c
@@ -667,6 +667,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 320,
+/**/
319,
/**/
318,
@@ -1367,12 +1369,12 @@
# ifdef FEAT_GUI_W32
# if defined(_MSC_VER) && (_MSC_VER <= 1010)
/* 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"));
+ MSG_PUTS(_("\nMS-Windows 64-bit GUI version"));
# else
- MSG_PUTS(_("\nMS-Windows 32 bit GUI version"));
+ MSG_PUTS(_("\nMS-Windows 32-bit GUI version"));
# endif
# endif
if (gui_is_win32s())
@@ -1381,17 +1383,21 @@
MSG_PUTS(_(" with OLE support"));
# endif
# else
- MSG_PUTS(_("\nMS-Windows 32 bit console version"));
+# ifdef _WIN64
+ MSG_PUTS(_("\nMS-Windows 64-bit console version"));
+# else
+ MSG_PUTS(_("\nMS-Windows 32-bit console version"));
+# endif
# endif
#endif
#ifdef WIN16
- MSG_PUTS(_("\nMS-Windows 16 bit version"));
+ MSG_PUTS(_("\nMS-Windows 16-bit version"));
#endif
#ifdef MSDOS
# ifdef DJGPP
- MSG_PUTS(_("\n32 bit MS-DOS version"));
+ MSG_PUTS(_("\n32-bit MS-DOS version"));
# else
- MSG_PUTS(_("\n16 bit MS-DOS version"));
+ MSG_PUTS(_("\n16-bit MS-DOS version"));
# endif
#endif
#ifdef MACOS