Remove mblen() check

This commit is contained in:
John Schmidt
2014-03-18 17:26:15 +01:00
committed by Thiago de Arruda
parent 5ff29e00a5
commit 26206d4cfd
4 changed files with 1 additions and 14 deletions

View File

@@ -1666,8 +1666,7 @@ char_u* skiptowhite(char_u *p)
/// @param p
///
/// @return Pointer to the next whitespace character.
char_u* skiptowhite_esc(char_u *p)
{
char_u* skiptowhite_esc(char_u *p) {
while (*p != ' ' && *p != '\t' && *p != NUL) {
if (((*p == '\\') || (*p == Ctrl_V)) && (*(p + 1) != NUL)) {
++p;