vim-patch:8.2.0560: compiler warning in tiny build

Problem:    Compiler warning in tiny build.
Solution:   Move declaration inside #ifdef. (Dominique Pelle, closes vim/vim#5915)
2196bce56f
This commit is contained in:
Jan Edmund Lazo
2020-04-12 15:58:14 -04:00
parent 0f18c718cd
commit a122f6c6d4
3 changed files with 12 additions and 14 deletions

View File

@@ -508,7 +508,7 @@ static int throw_exception(void *value, except_type_T type, char_u *cmdname)
nomem:
xfree(excp);
suppress_errthrow = TRUE;
suppress_errthrow = true;
EMSG(_(e_outofmem));
fail:
current_exception = NULL;