mirror of
https://github.com/neovim/neovim.git
synced 2025-09-18 17:28:23 +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:
@@ -479,7 +479,7 @@ static int throw_exception(void *value, except_type_T type, char *cmdname)
|
||||
}
|
||||
|
||||
excp->type = type;
|
||||
excp->throw_name = (char *)vim_strsave(sourcing_name == NULL ? (char_u *)"" : sourcing_name);
|
||||
excp->throw_name = xstrdup(sourcing_name == NULL ? "" : sourcing_name);
|
||||
excp->throw_lnum = sourcing_lnum;
|
||||
|
||||
if (p_verbose >= 13 || debug_break_level > 0) {
|
||||
|
Reference in New Issue
Block a user