1
0
forked from aniani/vim

updated for version 7.2-161

This commit is contained in:
Bram Moolenaar
2009-04-29 09:02:44 +00:00
parent f242762d0d
commit bd1e5d2e1d
5 changed files with 19 additions and 9 deletions

View File

@@ -1075,11 +1075,12 @@ free_all_mem()
#ifdef FEAT_QUICKFIX
{
win_T *win;
win_T *win;
tabpage_T *tab;
qf_free_all(NULL);
/* Free all location lists */
FOR_ALL_WINDOWS(win)
FOR_ALL_TAB_WINDOWS(tab, win)
qf_free_all(win);
}
#endif