mirror of
https://github.com/neovim/neovim.git
synced 2025-11-29 05:30:42 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -5028,8 +5028,8 @@ static long bt_regexec_both(char_u *line, colnr_T col, proftime_T *tm, int *time
|
||||
rex.reg_endpos = rex.reg_mmatch->endpos;
|
||||
} else {
|
||||
prog = (bt_regprog_T *)rex.reg_match->regprog;
|
||||
rex.reg_startp = rex.reg_match->startp;
|
||||
rex.reg_endp = rex.reg_match->endp;
|
||||
rex.reg_startp = (char_u **)rex.reg_match->startp;
|
||||
rex.reg_endp = (char_u **)rex.reg_match->endp;
|
||||
}
|
||||
|
||||
// Be paranoid...
|
||||
|
||||
Reference in New Issue
Block a user