Merge remote-tracking branch 'vim/master'

This commit is contained in:
Kazuki Sakamoto
2016-07-18 15:32:33 -07:00
2 changed files with 10 additions and 3 deletions
+8 -3
View File
@@ -2593,9 +2593,14 @@ qf_msg(qf_info_T *qi, int which, char *lead)
if (title != NULL)
{
while (STRLEN(buf) < 34)
STRCAT(buf, " ");
vim_strcat(buf, title, IOSIZE);
size_t len = STRLEN(buf);
if (len < 34)
{
vim_memset(buf + len, ' ', 34 - len);
buf[34] = NUL;
}
vim_strcat(buf, (char_u *)title, IOSIZE);
}
trunc_string(buf, buf, Columns - 1, IOSIZE);
msg(buf);
+2
View File
@@ -773,6 +773,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
2067,
/**/
2066,
/**/