1
0
forked from aniani/vim

patch 8.2.0212: missing search/substitute pattern hardly tested

Problem:    Missing search/substitute pattern hardly tested.
Solution:   Add test_clear_search_pat() and tests. (Yegappan Lakshmanan,
            closes #5579)
This commit is contained in:
Bram Moolenaar
2020-02-05 20:38:22 +01:00
parent 94255df057
commit 07ada5ff2f
15 changed files with 103 additions and 0 deletions

View File

@@ -380,6 +380,12 @@ last_search_pattern(void)
}
#endif
void
free_last_pat(int idx)
{
VIM_CLEAR(spats[idx].pat);
}
/*
* Return TRUE when case should be ignored for search pattern "pat".
* Uses the 'ignorecase' and 'smartcase' options.