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:
12
src/syntax.c
12
src/syntax.c
@@ -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.
|
||||
|
Reference in New Issue
Block a user