Yegappan wrote: > >> >> When developing additional tests for the quickfix functionality, > >> >> I found that some part of the code checks whether the quickfix > >> >> or location list stack is empty. To test for these conditions, we > >> >> need a function to delete the quickfix and location list stacks. > >> >> > >> >> What about extending the setqflist() and setloclist() functions > >> >> to add support for deleting a list? If the action parameter is 'd', > >> >> then delete the last quickfix/location list. If the action > >> >> parameter is 'w', then wipe out the entire list. > >> >> > >> >> setqflist([], 'd') - Delete the last quickfix list. > >> >> setqflist([], 'w') - Wipe out the quickfix stack. > >> >> setloclist(0, [], 'd') - Delete the last location list. > >> >> setloclist(0, [], 'w') - Wipe out the location list stack. > >> >> > >> >> Do you have any other suggestions? > >> > > >> > Does this have any other use than for testing? If not, then I would > >> > keep it as simple as possible. Perhaps we don't need the "w" argument? > >> > > >> > >> The attached patch adds support for freeing the quickfix stack > >> using the setqflist() function. Updated the quickfix tests to > >> make use of this functionality and added additional test cases. > > > > Thanks! > > > > When freeing the quickfix stack, if the quickfix window is present, then > the quickfix window contents are not updated. Similarly the location > list window is not updated after freeing the location list stack. > The attached patch fixes these issues and adds a test.
Thanks, I'll include it. -- hundred-and-one symptoms of being an internet addict: 252. You vote for foreign officials. /// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ an exciting new programming language -- http://www.Zimbu.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// -- -- 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.
