mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
getchar: Fix if block indentation
This commit is contained in:
parent
fe01e9c947
commit
d88ae748b5
@ -1849,11 +1849,12 @@ static int vgetorpeek(int advance)
|
|||||||
mp_match = mp;
|
mp_match = mp;
|
||||||
mp_match_len = keylen;
|
mp_match_len = keylen;
|
||||||
}
|
}
|
||||||
} else
|
} else {
|
||||||
/* No match; may have to check for
|
// No match; may have to check for termcode at next character.
|
||||||
* termcode at next character. */
|
if (max_mlen < mlen) {
|
||||||
if (max_mlen < mlen)
|
max_mlen = mlen;
|
||||||
max_mlen = mlen;
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user