aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ex_eval.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/ex_eval.h')
-rw-r--r--src/nvim/ex_eval.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/ex_eval.h b/src/nvim/ex_eval.h
index d3ba43a469..25b30b2805 100644
--- a/src/nvim/ex_eval.h
+++ b/src/nvim/ex_eval.h
@@ -40,8 +40,8 @@
* message in the list. See cause_errthrow() below.
*/
struct msglist {
- char_u *msg; // original message
- char_u *throw_msg; // msg to throw: usually original one
+ char *msg; // original message
+ char *throw_msg; // msg to throw: usually original one
struct msglist *next; // next of several messages in a row
};
@@ -60,7 +60,7 @@ typedef enum
typedef struct vim_exception except_T;
struct vim_exception {
except_type_T type; // exception type
- char_u *value; // exception value
+ char *value; // exception value
struct msglist *messages; // message(s) causing error exception
char_u *throw_name; // name of the throw point
linenr_T throw_lnum; // line number of the throw point