mirror of
https://github.com/neovim/neovim.git
synced 2025-09-16 00:08:19 +00:00
lint: clean-up after parent commit
This commit is contained in:
@@ -3329,8 +3329,9 @@ static bool cmdline_paste(int regname, bool literally, bool remcr)
|
||||
for (w = ccline.cmdbuff + ccline.cmdpos; w > ccline.cmdbuff; ) {
|
||||
if (has_mbyte) {
|
||||
len = (*mb_head_off)(ccline.cmdbuff, w - 1) + 1;
|
||||
if (!vim_iswordc(utf_ptr2char(w - len)))
|
||||
if (!vim_iswordc(utf_ptr2char(w - len))) {
|
||||
break;
|
||||
}
|
||||
w -= len;
|
||||
} else {
|
||||
if (!vim_iswordc(w[-1]))
|
||||
|
Reference in New Issue
Block a user