Mercurial > vim
changeset 7558:9a4c9dccd603 v7.4.1079
commit https://github.com/vim/vim/commit/b86a343280b08d6701da68ee0651e960a0a7a61c
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jan 10 16:00:53 2016 +0100
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.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 10 Jan 2016 16:15:04 +0100 |
parents | 502ca0a62fd8 |
children | 7619dd2089da |
files | Filelist src/quickfix.c src/version.c |
diffstat | 3 files changed, 8 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/Filelist +++ b/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 \
--- a/src/quickfix.c +++ b/src/quickfix.c @@ -250,9 +250,9 @@ qf_init_ext(qi, efile, buf, tv, errorfor {'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;