mirror of
https://github.com/neovim/neovim.git
synced 2025-10-02 16:08:36 +00:00
refactor: replace char_u with char 21 (#21779)
refactor: replace char_u with char Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -864,7 +864,7 @@ static int do_unlet_var(lval_T *lp, char *name_end, exarg_T *eap, int deep FUNC_
|
||||
int cc;
|
||||
|
||||
if (lp->ll_tv == NULL) {
|
||||
cc = (char_u)(*name_end);
|
||||
cc = (uint8_t)(*name_end);
|
||||
*name_end = NUL;
|
||||
|
||||
// Environment variable, normal name or expanded name.
|
||||
|
Reference in New Issue
Block a user