diff options
Diffstat (limited to 'src/nvim/ex_eval.h')
-rw-r--r-- | src/nvim/ex_eval.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_eval.h b/src/nvim/ex_eval.h index 98573c7182..235875fb91 100644 --- a/src/nvim/ex_eval.h +++ b/src/nvim/ex_eval.h @@ -62,7 +62,7 @@ struct vim_exception { except_type_T type; // exception type char *value; // exception value struct msglist *messages; // message(s) causing error exception - char_u *throw_name; // name of the throw point + char *throw_name; // name of the throw point linenr_T throw_lnum; // line number of the throw point except_T *caught; // next exception on the caught stack }; |