diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-03-04 21:55:31 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-03-04 21:55:31 +0000 |
commit | 87b5ca5172eb9e61f72f54f598d6d2ad646a8a76 (patch) | |
tree | 3d83af536ded8a5be657f757be1324595f672780 /src/quickfix.c | |
parent | 36fc535cb1353786d7edacfea1cd3ececaf6cf5d (diff) | |
download | vim-git-87b5ca5172eb9e61f72f54f598d6d2ad646a8a76.tar.gz |
updated for version 7.0214
Diffstat (limited to 'src/quickfix.c')
-rw-r--r-- | src/quickfix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quickfix.c b/src/quickfix.c index 2d83f1fcf..bc4ef1c6a 100644 --- a/src/quickfix.c +++ b/src/quickfix.c @@ -3339,7 +3339,7 @@ get_errorlist(wp, list) } if (qi->qf_curlist >= qi->qf_listcount - || qi->qf_lists[qi->qf_curlist].qf_count == 0) + || qi->qf_lists[qi->qf_curlist].qf_count == 0) return FAIL; qfp = qi->qf_lists[qi->qf_curlist].qf_start; |