mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 22:18:33 +00:00
Remove mblen() check
This commit is contained in:

committed by
Thiago de Arruda

parent
5ff29e00a5
commit
26206d4cfd
@@ -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;
|
||||
|
Reference in New Issue
Block a user