mirror of
https://github.com/neovim/neovim.git
synced 2025-10-16 23:06:14 +00:00
refactor: replace char_u variables and functions with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -2706,7 +2706,7 @@ void ex_diffgetput(exarg_T *eap)
|
||||
break;
|
||||
}
|
||||
p = vim_strsave(ml_get_buf(curtab->tp_diffbuf[idx_from], nr, false));
|
||||
ml_append(lnum + i - 1, p, 0, false);
|
||||
ml_append(lnum + i - 1, (char *)p, 0, false);
|
||||
xfree(p);
|
||||
added++;
|
||||
if (buf_empty && (curbuf->b_ml.ml_line_count == 2)) {
|
||||
|
Reference in New Issue
Block a user