From f96ae0b5a2e9e097c38cec04ec35364565d42271 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 28 Jul 2019 15:21:55 +0200 Subject: patch 8.1.1767: FEAT_SESSION defined separately Problem: FEAT_SESSION defined separately. Solution: Make FEAT_SESSION depend on FEAT_EVAL. --- src/feature.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/feature.h') diff --git a/src/feature.h b/src/feature.h index 74ea8d59c..e46947daf 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 -- cgit v1.2.1