mirror of
https://github.com/neovim/neovim.git
synced 2025-09-18 09:18:19 +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:
@@ -930,7 +930,7 @@ void ex_mkrc(exarg_T *eap)
|
||||
viewFile = fname;
|
||||
using_vdir = true;
|
||||
} else if (*eap->arg != NUL) {
|
||||
fname = (char *)eap->arg;
|
||||
fname = eap->arg;
|
||||
} else if (eap->cmdidx == CMD_mkvimrc) {
|
||||
fname = VIMRC_FILE;
|
||||
} else if (eap->cmdidx == CMD_mksession) {
|
||||
|
Reference in New Issue
Block a user