From 975a665d4811649a51e2c6a97a6ce096290d87ae Mon Sep 17 00:00:00 2001 From: Yegappan Lakshmanan Date: Fri, 14 Oct 2022 13:11:13 +0100 Subject: patch 9.0.0749: alloc/free of buffer for each quickfix entry is inefficient Problem: Alloc/free of buffer for each quickfix entry is inefficient. Solution: Use a shared grow array. (Yegappan Lakshmanan, closes #11365) --- src/proto/quickfix.pro | 1 + 1 file changed, 1 insertion(+) (limited to 'src/proto/quickfix.pro') diff --git a/src/proto/quickfix.pro b/src/proto/quickfix.pro index 904a60a8dd..913c3c404a 100644 --- a/src/proto/quickfix.pro +++ b/src/proto/quickfix.pro @@ -35,6 +35,7 @@ int trigger_cexpr_autocmd(int cmdidx); int cexpr_core(exarg_T *eap, typval_T *tv); void ex_cexpr(exarg_T *eap); void ex_helpgrep(exarg_T *eap); +void free_quickfix(void); void f_getloclist(typval_T *argvars, typval_T *rettv); void f_getqflist(typval_T *argvars, typval_T *rettv); void f_setloclist(typval_T *argvars, typval_T *rettv); -- cgit v1.2.3