0
0
mirror of https://github.com/vim/vim.git synced 2025-10-22 08:34:29 -04:00

patch 8.2.2945: some buffer related code is not tested

Problem:    Some buffer related code is not tested.
Solution:   Add a few more tests. (Yegappan Lakshmanan, closes #8320)
This commit is contained in:
Yegappan Lakshmanan
2021-06-05 20:59:22 +02:00
committed by Bram Moolenaar
parent 1328bde9d4
commit 59b262362f
6 changed files with 217 additions and 1 deletions

View File

@@ -591,7 +591,7 @@ _match(char *s1, char *s2)
static char *
_find(char *s, char *set)
{
for(; *s; s++)
for (; *s; s++)
{
char *ptr = set;