mirror of
https://github.com/neovim/neovim.git
synced 2026-04-29 18:54:18 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -64,8 +64,8 @@ typedef struct {
|
||||
.basetv = NULL, \
|
||||
}
|
||||
|
||||
#define FUNCARG(fp, j) ((char_u **)(fp->uf_args.ga_data))[j]
|
||||
#define FUNCLINE(fp, j) ((char_u **)(fp->uf_lines.ga_data))[j]
|
||||
#define FUNCARG(fp, j) ((char **)(fp->uf_args.ga_data))[j]
|
||||
#define FUNCLINE(fp, j) ((char **)(fp->uf_lines.ga_data))[j]
|
||||
|
||||
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
||||
# include "eval/userfunc.h.generated.h"
|
||||
|
||||
Reference in New Issue
Block a user