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