mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 7.4.1079
Problem: New include file missing from distribution. Missing changes to quickfix code. Solution: Add alloc.h to the list of distributed files. Use the enum in quickfix code.
This commit is contained in:
parent
acb4f221c7
commit
b86a343280
1
Filelist
1
Filelist
@ -7,6 +7,7 @@ SRC_ALL = \
|
||||
.travis.yml \
|
||||
appveyor.yml \
|
||||
src/README.txt \
|
||||
src/alloc.h \
|
||||
src/arabic.c \
|
||||
src/arabic.h \
|
||||
src/ascii.h \
|
||||
|
@ -250,9 +250,9 @@ qf_init_ext(qi, efile, buf, tv, errorformat, newlist, lnumfirst, lnumlast,
|
||||
{'s', ".\\+"}
|
||||
};
|
||||
|
||||
namebuf = alloc_id(CMDBUFFSIZE + 1, 3);
|
||||
errmsg = alloc_id(CMDBUFFSIZE + 1, 4);
|
||||
pattern = alloc_id(CMDBUFFSIZE + 1, 5);
|
||||
namebuf = alloc_id(CMDBUFFSIZE + 1, aid_qf_namebuf);
|
||||
errmsg = alloc_id(CMDBUFFSIZE + 1, aid_qf_errmsg);
|
||||
pattern = alloc_id(CMDBUFFSIZE + 1, aid_qf_pattern);
|
||||
if (namebuf == NULL || errmsg == NULL || pattern == NULL)
|
||||
goto qf_init_end;
|
||||
|
||||
@ -3462,8 +3462,8 @@ ex_vimgrep(eap)
|
||||
goto theend;
|
||||
}
|
||||
|
||||
dirname_start = alloc_id(MAXPATHL, 1);
|
||||
dirname_now = alloc_id(MAXPATHL, 2);
|
||||
dirname_start = alloc_id(MAXPATHL, aid_qf_dirname_start);
|
||||
dirname_now = alloc_id(MAXPATHL, aid_qf_dirname_now);
|
||||
if (dirname_start == NULL || dirname_now == NULL)
|
||||
goto theend;
|
||||
|
||||
|
@ -741,6 +741,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
1079,
|
||||
/**/
|
||||
1078,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user