comparison src/version.c @ 30731:2295ee9c025d v9.0.0700

patch 9.0.0700: there is no real need for a "big" build Commit: https://github.com/vim/vim/commit/25f3a146a0e4c731b8608f4cfbbfdf7a71b2d05e Author: Martin Tournoij <martin@arp242.net> Date: Sat Oct 8 19:26:41 2022 +0100 patch 9.0.0700: there is no real need for a "big" build Problem: There is no real need for a "big" build. Solution: Move common features to "normal" build, less often used features to the "huge" build. (Martin Tournoij, closes #11283)
author Bram Moolenaar <Bram@vim.org>
date Sat, 08 Oct 2022 20:30:05 +0200
parents cb32822d2730
children 5bea8e583d28
comparison
equal deleted inserted replaced
30730:f4a543b2595c 30731:2295ee9c025d
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 700,
702 /**/ 704 /**/
703 699, 705 699,
704 /**/ 706 /**/
705 698, 707 698,
706 /**/ 708 /**/
2417 } 2419 }
2418 #endif 2420 #endif
2419 2421
2420 #if defined(FEAT_HUGE) 2422 #if defined(FEAT_HUGE)
2421 msg_puts(_("\nHuge version ")); 2423 msg_puts(_("\nHuge version "));
2422 #elif defined(FEAT_BIG)
2423 msg_puts(_("\nBig version "));
2424 #elif defined(FEAT_NORMAL) 2424 #elif defined(FEAT_NORMAL)
2425 msg_puts(_("\nNormal version ")); 2425 msg_puts(_("\nNormal version "));
2426 #else 2426 #else
2427 msg_puts(_("\nTiny version ")); 2427 msg_puts(_("\nTiny version "));
2428 #endif 2428 #endif