summaryrefslogtreecommitdiffstats
path: root/src/vim9.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/vim9.h')
-rw-r--r--src/vim9.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vim9.h b/src/vim9.h
index 38286b32a1..ffa09a727d 100644
--- a/src/vim9.h
+++ b/src/vim9.h
@@ -203,7 +203,7 @@ typedef struct {
/*
* Instruction
*/
-typedef struct {
+struct isn_S {
isntype_T isn_type;
int isn_lnum;
union {
@@ -231,7 +231,7 @@ typedef struct {
loadstore_T loadstore;
script_T script;
} isn_arg;
-} isn_T;
+};
/*
* Info about a function defined with :def. Used in "def_functions".