fix typo.
This commit is contained in:
parent
035349a40d
commit
92fa3950ea
1 changed files with 1 additions and 1 deletions
|
@ -246,7 +246,7 @@ buffer_and_nest (from, to, ptr, get_line)
|
||||||
if (ptr->ptr[i] == '.')
|
if (ptr->ptr[i] == '.')
|
||||||
i++;
|
i++;
|
||||||
if (strncasecmp (ptr->ptr + i, from, from_len) == 0
|
if (strncasecmp (ptr->ptr + i, from, from_len) == 0
|
||||||
&& (ptr->len == (i + from_len || ! isalnum (ptr->ptr[i + from_len]))))
|
&& (ptr->len == (i + from_len) || ! isalnum (ptr->ptr[i + from_len])))
|
||||||
depth++;
|
depth++;
|
||||||
if (strncasecmp (ptr->ptr + i, to, to_len) == 0
|
if (strncasecmp (ptr->ptr + i, to, to_len) == 0
|
||||||
&& (ptr->len == (i + to_len) || ! isalnum (ptr->ptr[i + to_len])))
|
&& (ptr->len == (i + to_len) || ! isalnum (ptr->ptr[i + to_len])))
|
||||||
|
|
Loading…
Reference in a new issue