summaryrefslogtreecommitdiffstats
path: root/src/proto
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-08-09 22:14:48 +0200
committerBram Moolenaar <Bram@vim.org>2010-08-09 22:14:48 +0200
commitbc226b6ded1ede02f0543cc5f24d6e363ba66c0b (patch)
treecd98e8c6a82e618cd1d79b300849fa4fdc5a7713 /src/proto
parent314f11d44c5a8b011640b9e1a26bc71df4156b52 (diff)
Fix: :ltag command did not set w:quickfix_title. (Lech Lorens)
Diffstat (limited to 'src/proto')
-rw-r--r--src/proto/quickfix.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/quickfix.pro b/src/proto/quickfix.pro
index 65ef438db4..a5c690f646 100644
--- a/src/proto/quickfix.pro
+++ b/src/proto/quickfix.pro
@@ -23,7 +23,7 @@ void ex_cfile __ARGS((exarg_T *eap));
void ex_vimgrep __ARGS((exarg_T *eap));
char_u *skip_vimgrep_pat __ARGS((char_u *p, char_u **s, int *flags));
int get_errorlist __ARGS((win_T *wp, list_T *list));
-int set_errorlist __ARGS((win_T *wp, list_T *list, int action));
+int set_errorlist __ARGS((win_T *wp, list_T *list, int action, char_u *title));
void ex_cbuffer __ARGS((exarg_T *eap));
void ex_cexpr __ARGS((exarg_T *eap));
void ex_helpgrep __ARGS((exarg_T *eap));