mirror of
https://github.com/neovim/neovim.git
synced 2025-10-07 18:36:30 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -703,7 +703,7 @@ void ex_compiler(exarg_T *eap)
|
||||
do_cmdline_cmd("echo globpath(&rtp, 'compiler/*.vim')"); // NOLINT
|
||||
do_cmdline_cmd("echo globpath(&rtp, 'compiler/*.lua')"); // NOLINT
|
||||
} else {
|
||||
size_t bufsize = STRLEN(eap->arg) + 14;
|
||||
size_t bufsize = strlen(eap->arg) + 14;
|
||||
buf = xmalloc(bufsize);
|
||||
if (eap->forceit) {
|
||||
// ":compiler! {name}" sets global options
|
||||
|
Reference in New Issue
Block a user