summaryrefslogtreecommitdiffstats
path: root/src/feature.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-07-28 15:21:55 +0200
committerBram Moolenaar <Bram@vim.org>2019-07-28 15:21:55 +0200
commitf96ae0b5a2e9e097c38cec04ec35364565d42271 (patch)
treef04e325eccfdcefa4b90be79b1937932cff758a6 /src/feature.h
parent2a9c9f6d89f19f8fa8d926e80c7f988729f6f1bd (diff)
patch 8.1.1767: FEAT_SESSION defined separatelyv8.1.1767
Problem: FEAT_SESSION defined separately. Solution: Make FEAT_SESSION depend on FEAT_EVAL.
Diffstat (limited to 'src/feature.h')
-rw-r--r--src/feature.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/feature.h b/src/feature.h
index 74ea8d59ca..e46947daf8 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