commit | f96ae0b5a2e9e097c38cec04ec35364565d42271 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sun Jul 28 15:21:55 2019 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Sun Jul 28 15:21:55 2019 +0200 |
tree | f04e325eccfdcefa4b90be79b1937932cff758a6 | |
parent | 2a9c9f6d89f19f8fa8d926e80c7f988729f6f1bd [diff] [blame] |
patch 8.1.1767: FEAT_SESSION defined separately Problem: FEAT_SESSION defined separately. Solution: Make FEAT_SESSION depend on FEAT_EVAL.
diff --git a/src/feature.h b/src/feature.h index 74ea8d5..e46947d 100644 --- a/src/feature.h +++ b/src/feature.h
@@ -559,9 +559,9 @@ /* * +mksession ":mksession" command. - * Requires +windows and +vertsplit. + * fully depends on +eval */ -#if defined(FEAT_NORMAL) +#if defined(FEAT_EVAL) # define FEAT_SESSION #endif