commit | bc226b6ded1ede02f0543cc5f24d6e363ba66c0b | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Mon Aug 09 22:14:48 2010 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Mon Aug 09 22:14:48 2010 +0200 |
tree | cd98e8c6a82e618cd1d79b300849fa4fdc5a7713 | |
parent | 314f11d44c5a8b011640b9e1a26bc71df4156b52 [diff] [blame] |
Fix: :ltag command did not set w:quickfix_title. (Lech Lorens)
diff --git a/src/eval.c b/src/eval.c index 6d6f9b4..fc01006 100644 --- a/src/eval.c +++ b/src/eval.c
@@ -15824,7 +15824,7 @@ 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