mirror of
https://github.com/vim/vim.git
synced 2025-11-13 22:54:27 -05:00
updated for version 7.3.1149
Problem: New regexp engine: Matching plain text could be faster.
Solution: Detect a plain text match and handle it specifically. Add
vim_regfree().
This commit is contained in:
@@ -7921,7 +7921,7 @@ au_cleanup()
|
||||
if (ap->pat == NULL)
|
||||
{
|
||||
*prev_ap = ap->next;
|
||||
vim_free(ap->reg_prog);
|
||||
vim_regfree(ap->reg_prog);
|
||||
vim_free(ap);
|
||||
}
|
||||
else
|
||||
@@ -10070,7 +10070,7 @@ match_file_pat(pattern, prog, fname, sfname, tail, allow_dirs)
|
||||
result = TRUE;
|
||||
|
||||
if (prog == NULL)
|
||||
vim_free(regmatch.regprog);
|
||||
vim_regfree(regmatch.regprog);
|
||||
return result;
|
||||
}
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user