comparison src/version.c @ 17504:5d63aa71efe1 v8.1.1750

patch 8.1.1750: depending on the terminal width :version may miss a line break commit https://github.com/vim/vim/commit/8a5c29aee978345132ad7f318b8a84633c33905c Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jul 26 19:48:19 2019 +0200 patch 8.1.1750: depending on the terminal width :version may miss a line break Problem: Depending on the terminal width :version may miss a line break. Solution: Add a line break when needed.
author Bram Moolenaar <Bram@vim.org>
date Fri, 26 Jul 2019 20:00:07 +0200
parents bc6088919610
children 74b6674b99fd
comparison
equal deleted inserted replaced
17503:638669fc0f65 17504:5d63aa71efe1
775 NULL 775 NULL
776 }; 776 };
777 777
778 static int included_patches[] = 778 static int included_patches[] =
779 { /* Add new patch number below this line */ 779 { /* Add new patch number below this line */
780 /**/
781 1750,
780 /**/ 782 /**/
781 1749, 783 1749,
782 /**/ 784 /**/
783 1748, 785 1748,
784 /**/ 786 /**/
4639 # endif 4641 # endif
4640 #endif 4642 #endif
4641 version_msg(_(" Features included (+) or not (-):\n")); 4643 version_msg(_(" Features included (+) or not (-):\n"));
4642 4644
4643 list_features(); 4645 list_features();
4646 if (msg_col > 0)
4647 msg_putchar('\n');
4644 4648
4645 #ifdef SYS_VIMRC_FILE 4649 #ifdef SYS_VIMRC_FILE
4646 version_msg(_(" system vimrc file: \"")); 4650 version_msg(_(" system vimrc file: \""));
4647 version_msg(SYS_VIMRC_FILE); 4651 version_msg(SYS_VIMRC_FILE);
4648 version_msg("\"\n"); 4652 version_msg("\"\n");