Hi Bram,
On Mon, Jun 20, 2016 at 12:40 PM, Bram Moolenaar <[email protected]> wrote:
>
> Yegappan wrote:
>
>> While refactoring the qf_init_ext() function, I found a couple of
>> bugs in quickfix. The patch to fix these bugs is attached.
>
> Thanks. These problems were not caught by a test, right?
>
I was wondering why this problem was not caught by the test.
I found that the check for long lines is missing in the test for
cbuffer. The attached patch fixes this.
- Yegappan
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.
diff --git a/src/testdir/test_quickfix.vim b/src/testdir/test_quickfix.vim
index 56bf9cb..211ccc2 100644
--- a/src/testdir/test_quickfix.vim
+++ b/src/testdir/test_quickfix.vim
@@ -1006,6 +1006,7 @@ function s:long_lines_tests(cchar)
" buffer
exe 'edit' testfile
exe 'Xbuffer' bufnr('%')
+ call XLongLinesTests(a:cchar)
endfunction
function Test_long_lines()