fix typo.

This commit is contained in:
Nick Clifton 1999-11-12 15:39:46 +00:00
parent 035349a40d
commit 92fa3950ea
1 changed files with 1 additions and 1 deletions

View File

@ -246,7 +246,7 @@ buffer_and_nest (from, to, ptr, get_line)
if (ptr->ptr[i] == '.')
i++;
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++;
if (strncasecmp (ptr->ptr + i, to, to_len) == 0
&& (ptr->len == (i + to_len) || ! isalnum (ptr->ptr[i + to_len])))