comparison src/version.c @ 11121:778c10516955 v8.0.0448

patch 8.0.0448: some macros are in lower case commit https://github.com/vim/vim/commit/b5aedf3e228d35821591da9ae8501b61cf2e264c Author: Bram Moolenaar <Bram@vim.org> Date: Sun Mar 12 18:23:53 2017 +0100 patch 8.0.0448: some macros are in lower case Problem: Some macros are in lower case, which can be confusing. Solution: Make a few lower case macros upper case.
author Christian Brabandt <cb@256bit.org>
date Sun, 12 Mar 2017 18:30:06 +0100
parents d8a550329a97
children 9bfc9d7b07a7
comparison
equal deleted inserted replaced
11120:29ee7ffe8df7 11121:778c10516955
762 NULL 762 NULL
763 }; 763 };
764 764
765 static int included_patches[] = 765 static int included_patches[] =
766 { /* Add new patch number below this line */ 766 { /* Add new patch number below this line */
767 /**/
768 448,
767 /**/ 769 /**/
768 447, 770 447,
769 /**/ 771 /**/
770 446, 772 446,
771 /**/ 773 /**/
2089 * Show the intro message when not editing a file. 2091 * Show the intro message when not editing a file.
2090 */ 2092 */
2091 void 2093 void
2092 maybe_intro_message(void) 2094 maybe_intro_message(void)
2093 { 2095 {
2094 if (bufempty() 2096 if (BUFEMPTY()
2095 && curbuf->b_fname == NULL 2097 && curbuf->b_fname == NULL
2096 #ifdef FEAT_WINDOWS 2098 #ifdef FEAT_WINDOWS
2097 && firstwin->w_next == NULL 2099 && firstwin->w_next == NULL
2098 #endif 2100 #endif
2099 && vim_strchr(p_shm, SHM_INTRO) == NULL) 2101 && vim_strchr(p_shm, SHM_INTRO) == NULL)