1
0
forked from aniani/vim

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

@@ -338,6 +338,15 @@ restore_search_patterns()
}
#endif
#if defined(EXITFREE) || defined(PROTO)
void
free_search_patterns()
{
vim_free(spats[0].pat);
vim_free(spats[1].pat);
}
#endif
/*
* Return TRUE when case should be ignored for search pattern "pat".
* Uses the 'ignorecase' and 'smartcase' options.