0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

updated for version 7.0093

This commit is contained in:
Bram Moolenaar
2005-06-25 23:04:51 +00:00
parent ea408854a8
commit f461c8e7f8
49 changed files with 1559 additions and 306 deletions

View File

@@ -732,6 +732,17 @@ qf_new_list()
qf_lists[qf_curlist].qf_count = 0;
}
#if defined(EXITFREE) || defined(PROTO)
void
qf_free_all()
{
int i;
for (i = 0; i < qf_listcount; ++i)
qf_free(i);
}
#endif
/*
* Add an entry to the end of the list of errors.
* Returns OK or FAIL.