mirror of
https://github.com/neovim/neovim.git
synced 2025-09-19 01:38:16 +00:00
refactor: replace char_u with char 25 (#21838)
refactor: replace char_u with char Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -1150,7 +1150,7 @@ void ex_throw(exarg_T *eap)
|
||||
// On error or when an exception is thrown during argument evaluation, do
|
||||
// not throw.
|
||||
if (!eap->skip && value != NULL) {
|
||||
if (throw_exception((char_u *)value, ET_USER, NULL) == FAIL) {
|
||||
if (throw_exception(value, ET_USER, NULL) == FAIL) {
|
||||
xfree(value);
|
||||
} else {
|
||||
do_throw(eap->cstack);
|
||||
|
Reference in New Issue
Block a user