mirror of
https://github.com/neovim/neovim.git
synced 2025-09-27 05:28:33 +00:00
getchar: Fix linter error
This commit is contained in:
@@ -3999,7 +3999,7 @@ int put_escstr(FILE *fd, char_u *strstart, int what)
|
|||||||
return OK;
|
return OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (; *str != NUL; ++str) {
|
for (; *str != NUL; str++) {
|
||||||
// Check for a multi-byte character, which may contain escaped
|
// Check for a multi-byte character, which may contain escaped
|
||||||
// K_SPECIAL and CSI bytes.
|
// K_SPECIAL and CSI bytes.
|
||||||
const char *p = mb_unescape((const char **)&str);
|
const char *p = mb_unescape((const char **)&str);
|
||||||
|
Reference in New Issue
Block a user