mirror of
https://github.com/neovim/neovim.git
synced 2025-10-09 19:36:40 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -721,7 +721,7 @@ int get_number_indent(linenr_T lnum)
|
||||
// start matching for the flp beyond any comment leader...
|
||||
if (vim_regexec(®match, ml_get(lnum) + lead_len, (colnr_T)0)) {
|
||||
pos.lnum = lnum;
|
||||
pos.col = (colnr_T)(*regmatch.endp - (char_u *)ml_get(lnum));
|
||||
pos.col = (colnr_T)(*regmatch.endp - ml_get(lnum));
|
||||
pos.coladd = 0;
|
||||
}
|
||||
vim_regfree(regmatch.regprog);
|
||||
|
Reference in New Issue
Block a user