summaryrefslogtreecommitdiff
path: root/src/structs.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-12-01 21:47:59 +0100
committerBram Moolenaar <Bram@vim.org>2020-12-01 21:47:59 +0100
commita452b808b4da2d272ca4a50865eb8ca89a58f239 (patch)
tree2c899244df2dccba173cacc445c4a3fc8032c1b3 /src/structs.h
parentc478ee3d83fab0dba46740f2023c35f743f88316 (diff)
downloadvim-git-a452b808b4da2d272ca4a50865eb8ca89a58f239.tar.gz
patch 8.2.2077: build failure with small featuresv8.2.2077
Problem: Build failure with small features. Solution: Add #ifdef.
Diffstat (limited to 'src/structs.h')
-rw-r--r--src/structs.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h
index b18134ac0..631881f5b 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -4155,7 +4155,9 @@ typedef struct {
int save_finish_op;
int save_opcount;
int save_reg_executing;
+#ifdef FEAT_EVAL
int save_script_version;
+#endif
tasave_T tabuf;
} save_state_T;