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

updated for version 7.0092

This commit is contained in:
Bram Moolenaar
2005-06-24 23:07:47 +00:00
parent 0a5fe2140d
commit 1ec484f58e
16 changed files with 174 additions and 18 deletions

View File

@@ -7067,6 +7067,18 @@ do_highlight(line, forceit, init)
need_highlight_changed = TRUE;
}
#if defined(EXITFREE) || defined(PROTO)
void
free_highlight()
{
int i;
for (i = 0; i < highlight_ga.ga_len; ++i)
highlight_clear(i);
ga_clear(&highlight_ga);
}
#endif
/*
* Reset the cterm colors to what they were before Vim was started, if
* possible. Otherwise reset them to zero.