comparison src/version.c @ 1491:a135270b7549 v7.1.206

updated for version 7.1-206
author vimboss
date Sat, 05 Jan 2008 12:59:22 +0000
parents 0f3f3090491f
children 3b226f4693dc
comparison
equal deleted inserted replaced
1490:0f3f3090491f 1491:a135270b7549
664 NULL 664 NULL
665 }; 665 };
666 666
667 static int included_patches[] = 667 static int included_patches[] =
668 { /* Add new patch number below this line */ 668 { /* Add new patch number below this line */
669 /**/
670 206,
669 /**/ 671 /**/
670 205, 672 205,
671 /**/ 673 /**/
672 204, 674 204,
673 /**/ 675 /**/
1585 # define MODBY_LEN 150 1587 # define MODBY_LEN 150
1586 char_u modby[MODBY_LEN]; 1588 char_u modby[MODBY_LEN];
1587 1589
1588 if (*mesg == ' ') 1590 if (*mesg == ' ')
1589 { 1591 {
1590 vim_strncpy(modby, _("Modified by "), MODBY_LEN - 1); 1592 vim_strncpy(modby, (char_u *)_("Modified by "), MODBY_LEN - 1);
1591 l = STRLEN(modby); 1593 l = STRLEN(modby);
1592 vim_strncpy(modby + l, MODIFIED_BY, MODBY_LEN - l - 1); 1594 vim_strncpy(modby + l, (char_u *)MODIFIED_BY, MODBY_LEN - l - 1);
1593 mesg = modby; 1595 mesg = modby;
1594 } 1596 }
1595 #endif 1597 #endif
1596 1598
1597 /* Center the message horizontally. */ 1599 /* Center the message horizontally. */