diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-08-09 22:14:48 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-08-09 22:14:48 +0200 |
commit | bc226b6ded1ede02f0543cc5f24d6e363ba66c0b (patch) | |
tree | cd98e8c6a82e618cd1d79b300849fa4fdc5a7713 /src/proto/quickfix.pro | |
parent | 314f11d44c5a8b011640b9e1a26bc71df4156b52 (diff) | |
download | vim-git-bc226b6ded1ede02f0543cc5f24d6e363ba66c0b.tar.gz |
Fix: :ltag command did not set w:quickfix_title. (Lech Lorens)
Diffstat (limited to 'src/proto/quickfix.pro')
-rw-r--r-- | src/proto/quickfix.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/quickfix.pro b/src/proto/quickfix.pro index 65ef438db..a5c690f64 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)); |