Rewrite *p, *(p+1) as p[0], p[1] for readability.

This commit is contained in:
chad 2015-09-27 15:21:49 -05:00
parent 63a55dd06c
commit 71ed0d3375
1 changed files with 1 additions and 1 deletions

View File

@ -485,7 +485,7 @@ parse (char *text)
if (*p == '\0' || *p == '\n')
return;
if (*p == '%' && *(p+1) == '{' && (block_end = strchr(p++, '}'))) {
if (p[0] == '%' && p[1] == '{' && (block_end = strchr(p++, '}'))) {
p++;
while (p < block_end) {
while (isspace(*p))