getchar: Fix if block indentation

This commit is contained in:
ZyX 2017-04-16 20:29:19 +03:00
parent fe01e9c947
commit d88ae748b5

View File

@ -1849,13 +1849,14 @@ static int vgetorpeek(int advance)
mp_match = mp;
mp_match_len = keylen;
}
} else
/* No match; may have to check for
* termcode at next character. */
if (max_mlen < mlen)
} else {
// No match; may have to check for termcode at next character.
if (max_mlen < mlen) {
max_mlen = mlen;
}
}
}
}
/* If no partly match found, use the longest full
* match. */