comparison src/version.c @ 16451:7ae2396cef62 v8.1.1230

patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe commit https://github.com/vim/vim/commit/afde13b62b8fa25dac4635d5caee8d088b937ee0 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Apr 28 19:46:49 2019 +0200 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe Problem: A lot of code is shared between vim.exe and gvim.exe. Solution: Optionally put the shared code in vim.dll. (Ken Takata, closes #4287)
author Bram Moolenaar <Bram@vim.org>
date Sun, 28 Apr 2019 20:00:10 +0200
parents fd57da82dd5d
children 4e9bea9b8025
comparison
equal deleted inserted replaced
16450:bf74bce807e8 16451:7ae2396cef62
765 NULL 765 NULL
766 }; 766 };
767 767
768 static int included_patches[] = 768 static int included_patches[] =
769 { /* Add new patch number below this line */ 769 { /* Add new patch number below this line */
770 /**/
771 1230,
770 /**/ 772 /**/
771 1229, 773 1229,
772 /**/ 774 /**/
773 1228, 775 1228,
774 /**/ 776 /**/
3418 */ 3420 */
3419 init_longVersion(); 3421 init_longVersion();
3420 msg(longVersion); 3422 msg(longVersion);
3421 #ifdef MSWIN 3423 #ifdef MSWIN
3422 # ifdef FEAT_GUI_MSWIN 3424 # ifdef FEAT_GUI_MSWIN
3423 # ifdef _WIN64 3425 # ifdef VIMDLL
3426 # ifdef _WIN64
3427 msg_puts(_("\nMS-Windows 64-bit GUI/console version"));
3428 # else
3429 msg_puts(_("\nMS-Windows 32-bit GUI/console version"));
3430 # endif
3431 # else
3432 # ifdef _WIN64
3424 msg_puts(_("\nMS-Windows 64-bit GUI version")); 3433 msg_puts(_("\nMS-Windows 64-bit GUI version"));
3425 # else 3434 # else
3426 msg_puts(_("\nMS-Windows 32-bit GUI version")); 3435 msg_puts(_("\nMS-Windows 32-bit GUI version"));
3436 # endif
3427 # endif 3437 # endif
3428 # ifdef FEAT_OLE 3438 # ifdef FEAT_OLE
3429 msg_puts(_(" with OLE support")); 3439 msg_puts(_(" with OLE support"));
3430 # endif 3440 # endif
3431 # else 3441 # else