diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-07-28 15:21:55 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-07-28 15:21:55 +0200 |
commit | f96ae0b5a2e9e097c38cec04ec35364565d42271 (patch) | |
tree | f04e325eccfdcefa4b90be79b1937932cff758a6 /src/proto.h | |
parent | 2a9c9f6d89f19f8fa8d926e80c7f988729f6f1bd (diff) | |
download | vim-git-f96ae0b5a2e9e097c38cec04ec35364565d42271.tar.gz |
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/proto.h')
-rw-r--r-- | src/proto.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/proto.h b/src/proto.h index 641511289..22570127e 100644 --- a/src/proto.h +++ b/src/proto.h @@ -183,9 +183,7 @@ void qsort(void *base, size_t elm_count, size_t elm_size, int (*cmp)(const void # endif # include "regexp.pro" # include "screen.pro" -# ifdef FEAT_SESSION -# include "session.pro" -# endif +# include "session.pro" # if defined(FEAT_CRYPT) || defined(FEAT_PERSISTENT_UNDO) # include "sha256.pro" # endif |