Skip to content

Commit

Permalink
patch 8.0.0951: another wrong #ifdef
Browse files Browse the repository at this point in the history
Problem:    Another wrong #ifdef.
Solution:   Change TERMINAL to FEAT_TERMINAL. (closes #1981)
  • Loading branch information
brammool committed Aug 17, 2017
1 parent ade5963 commit 84ed4ad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/option.c
Expand Up @@ -3099,7 +3099,7 @@ static struct vimoption options[] =
#endif #endif
{(char_u *)1L, (char_u *)0L} SCRIPTID_INIT}, {(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
{"winptydll", NULL, P_STRING|P_EXPAND|P_VI_DEF|P_SECURE, {"winptydll", NULL, P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
#if defined(WIN3264) && defined(TERMINAL) #if defined(WIN3264) && defined(FEAT_TERMINAL)
(char_u *)&p_winptydll, PV_NONE, { (char_u *)&p_winptydll, PV_NONE, {
# ifdef _WIN64 # ifdef _WIN64
(char_u *)"winpty64.dll", (char_u *)"winpty64.dll",
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -769,6 +769,8 @@ static char *(features[]) =


static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
951,
/**/ /**/
950, 950,
/**/ /**/
Expand Down

0 comments on commit 84ed4ad

Please sign in to comment.