comparison src/version.c @ 7805:0b6c37dd858d v7.4.1199

commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jan 29 22:47:03 2016 +0100 patch 7.4.1199 Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
author Christian Brabandt <cb@256bit.org>
date Fri, 29 Jan 2016 23:00:05 +0100
parents 37c929c4a073
children 1a5d34492798
comparison
equal deleted inserted replaced
7804:874044d87168 7805:0b6c37dd858d
53 # endif 53 # endif
54 #else 54 #else
55 char *longVersion = VIM_VERSION_LONG; 55 char *longVersion = VIM_VERSION_LONG;
56 #endif 56 #endif
57 57
58 static void list_features __ARGS((void)); 58 static void list_features(void);
59 static void version_msg __ARGS((char *s)); 59 static void version_msg(char *s);
60 60
61 static char *(features[]) = 61 static char *(features[]) =
62 { 62 {
63 #ifdef HAVE_ACL 63 #ifdef HAVE_ACL
64 "+acl", 64 "+acl",
744 NULL 744 NULL
745 }; 745 };
746 746
747 static int included_patches[] = 747 static int included_patches[] =
748 { /* Add new patch number below this line */ 748 { /* Add new patch number below this line */
749 /**/
750 1199,
749 /**/ 751 /**/
750 1198, 752 1198,
751 /**/ 753 /**/
752 1197, 754 1197,
753 /**/ 755 /**/
3576 msg_putchar('\n'); 3578 msg_putchar('\n');
3577 if (!got_int) 3579 if (!got_int)
3578 MSG_PUTS(s); 3580 MSG_PUTS(s);
3579 } 3581 }
3580 3582
3581 static void do_intro_line __ARGS((int row, char_u *mesg, int add_version, int attr)); 3583 static void do_intro_line(int row, char_u *mesg, int add_version, int attr);
3582 3584
3583 /* 3585 /*
3584 * Show the intro message when not editing a file. 3586 * Show the intro message when not editing a file.
3585 */ 3587 */
3586 void 3588 void