mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 22:48:34 +00:00
lint: clean-up after parent commits
This commit is contained in:
@@ -3655,11 +3655,13 @@ int check_abbr(int c, char_u *ptr, int col, int mincol)
|
||||
tb[j++] = (char_u)K_SECOND(c);
|
||||
tb[j++] = (char_u)K_THIRD(c);
|
||||
} else {
|
||||
if (c < ABBR_OFF && (c < ' ' || c > '~'))
|
||||
tb[j++] = Ctrl_V; /* special char needs CTRL-V */
|
||||
/* if ABBR_OFF has been added, remove it here */
|
||||
if (c >= ABBR_OFF)
|
||||
if (c < ABBR_OFF && (c < ' ' || c > '~')) {
|
||||
tb[j++] = Ctrl_V; // special char needs CTRL-V
|
||||
}
|
||||
// if ABBR_OFF has been added, remove it here.
|
||||
if (c >= ABBR_OFF) {
|
||||
c -= ABBR_OFF;
|
||||
}
|
||||
j += utf_char2bytes(c, tb + j);
|
||||
}
|
||||
tb[j] = NUL;
|
||||
|
Reference in New Issue
Block a user