0
0
mirror of https://github.com/vim/vim.git synced 2025-10-01 04:54:07 -04:00

patch 8.1.1767: FEAT_SESSION defined separately

Problem:    FEAT_SESSION defined separately.
Solution:   Make FEAT_SESSION depend on FEAT_EVAL.
This commit is contained in:
Bram Moolenaar
2019-07-28 15:21:55 +02:00
parent 2a9c9f6d89
commit f96ae0b5a2
7 changed files with 26 additions and 33 deletions

View File

@@ -307,7 +307,6 @@ static void ex_tag_cmd(exarg_T *eap, char_u *name);
static char_u *arg_all(void);
#ifndef FEAT_SESSION
# define ex_loadview ex_ni
# define ex_mkrc ex_ni
#endif
#ifndef FEAT_EVAL
# define ex_compiler ex_ni
@@ -8433,8 +8432,7 @@ close_redir(void)
#endif
}
#if ((defined(FEAT_SESSION) || defined(FEAT_EVAL)) && defined(vim_mkdir)) \
|| defined(PROTO)
#if (defined(FEAT_SESSION) || defined(FEAT_EVAL)) || defined(PROTO)
int
vim_mkdir_emsg(char_u *name, int prot)
{