commit | a452b808b4da2d272ca4a50865eb8ca89a58f239 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Tue Dec 01 21:47:59 2020 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Tue Dec 01 21:47:59 2020 +0100 |
tree | 2c899244df2dccba173cacc445c4a3fc8032c1b3 | |
parent | c478ee3d83fab0dba46740f2023c35f743f88316 [diff] [blame] |
patch 8.2.2077: build failure with small features Problem: Build failure with small features. Solution: Add #ifdef.
diff --git a/src/structs.h b/src/structs.h index b18134a..631881f 100644 --- a/src/structs.h +++ b/src/structs.h
@@ -4155,7 +4155,9 @@ 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;