0
0
mirror of https://github.com/vim/vim.git synced 2025-10-01 04:54:07 -04:00

patch 8.2.3254: win_gettype() does not recognize a quickfix window

Problem:    win_gettype() does not recognize a quickfix window.
Solution:   Add "quickfix" and "loclist". (Yegappan Lakshmanan, closes #8676)
This commit is contained in:
Yegappan Lakshmanan
2021-07-31 12:43:23 +02:00
committed by Bram Moolenaar
parent 890ee4e2be
commit 28d8421bfb
5 changed files with 32 additions and 5 deletions

View File

@@ -1574,10 +1574,10 @@ ga_concat_len(garray_T *gap, char_u *s, size_t len)
{
if (s == NULL || *s == NUL)
return;
if (ga_grow(gap, len) == OK)
if (ga_grow(gap, (int)len) == OK)
{
mch_memmove((char *)gap->ga_data + gap->ga_len, s, (size_t)len);
gap->ga_len += len;
mch_memmove((char *)gap->ga_data + gap->ga_len, s, len);
gap->ga_len += (int)len;
}
}