summaryrefslogtreecommitdiff
path: root/src/quickfix.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/quickfix.c')
-rw-r--r--src/quickfix.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/quickfix.c b/src/quickfix.c
index e231fdfe9..003d0075d 100644
--- a/src/quickfix.c
+++ b/src/quickfix.c
@@ -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;