comparison src/version.c @ 30645:101f08b49ed3 v9.0.0657

patch 9.0.0657: too many #ifdefs Commit: https://github.com/vim/vim/commit/7904fa420eb577274c4c3711295240100167d495 Author: Martin Tournoij <martin@arp242.net> Date: Tue Oct 4 16:28:45 2022 +0100 patch 9.0.0657: too many #ifdefs Problem: Too many #ifdefs. Solution: Graduate the +cmdwin feature. Now the tiny and small builds are equal, drop the small build. (Martin Tournoij, closes #11268)
author Bram Moolenaar <Bram@vim.org>
date Tue, 04 Oct 2022 17:30:06 +0200
parents dfb02f9dcbe8
children 22de625d0cd8
comparison
equal deleted inserted replaced
30644:0c102a723b9a 30645:101f08b49ed3
697 NULL 697 NULL
698 }; 698 };
699 699
700 static int included_patches[] = 700 static int included_patches[] =
701 { /* Add new patch number below this line */ 701 { /* Add new patch number below this line */
702 /**/
703 657,
702 /**/ 704 /**/
703 656, 705 656,
704 /**/ 706 /**/
705 655, 707 655,
706 /**/ 708 /**/
2335 msg_puts(_("\nHuge version ")); 2337 msg_puts(_("\nHuge version "));
2336 #elif defined(FEAT_BIG) 2338 #elif defined(FEAT_BIG)
2337 msg_puts(_("\nBig version ")); 2339 msg_puts(_("\nBig version "));
2338 #elif defined(FEAT_NORMAL) 2340 #elif defined(FEAT_NORMAL)
2339 msg_puts(_("\nNormal version ")); 2341 msg_puts(_("\nNormal version "));
2340 #elif defined(FEAT_SMALL)
2341 msg_puts(_("\nSmall version "));
2342 #else 2342 #else
2343 msg_puts(_("\nTiny version ")); 2343 msg_puts(_("\nTiny version "));
2344 #endif 2344 #endif
2345 #if !defined(FEAT_GUI) 2345 #if !defined(FEAT_GUI)
2346 msg_puts(_("without GUI.")); 2346 msg_puts(_("without GUI."));