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/eval.c | |
parent | 314f11d44c5a8b011640b9e1a26bc71df4156b52 (diff) | |
download | vim-bc226b6ded1ede02f0543cc5f24d6e363ba66c0b.zip |
Fix: :ltag command did not set w:quickfix_title. (Lech Lorens)
Diffstat (limited to 'src/eval.c')
-rw-r--r-- | src/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c index 6d6f9b40c..fc01006f2 100644 --- a/src/eval.c +++ b/src/eval.c @@ -15824,7 +15824,7 @@ set_qf_ll_list(wp, list_arg, action_arg, rettv) action = *act; } - if (l != NULL && set_errorlist(wp, l, action) == OK) + if (l != NULL && set_errorlist(wp, l, action, NULL) == OK) rettv->vval.v_number = 0; } #endif |