diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-02-28 08:49:02 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-28 08:49:02 +0800 |
commit | f113cba3ec127201f54094f9174b50ee3001fbee (patch) | |
tree | cd909c0e8094a764fc52e3ab8a4781fbe9743827 /src/nvim/globals.h | |
parent | 1b632e99f231baca8a640502a352aa68aee0568a (diff) | |
download | rneovim-f113cba3ec127201f54094f9174b50ee3001fbee.tar.gz rneovim-f113cba3ec127201f54094f9174b50ee3001fbee.tar.bz2 rneovim-f113cba3ec127201f54094f9174b50ee3001fbee.zip |
refactor(getchar.c): change most char_u to uint8_t (#22444)
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r-- | src/nvim/globals.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h index 94448eb7d7..f3bfbdabf6 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -789,7 +789,7 @@ EXTERN int redir_reg INIT(= 0); // message redirection register EXTERN int redir_vname INIT(= 0); // message redirection variable EXTERN garray_T *capture_ga INIT(= NULL); // captured output for execute() -EXTERN char_u langmap_mapchar[256]; // mapping for language keys +EXTERN uint8_t langmap_mapchar[256]; // mapping for language keys EXTERN int save_p_ls INIT(= -1); // Save 'laststatus' setting EXTERN int save_p_wmh INIT(= -1); // Save 'winminheight' setting @@ -832,7 +832,7 @@ EXTERN long sub_nsubs; // total number of substitutions EXTERN linenr_T sub_nlines; // total number of lines changed // table to store parsed 'wildmode' -EXTERN char_u wim_flags[4]; +EXTERN uint8_t wim_flags[4]; // whether titlestring and iconstring contains statusline syntax #define STL_IN_ICON 1 |