Skip to content

Commit ad2cfb5

Browse files
committed
patch 8.0.0441: dead code in #ifdef
Problem: Dead code in #ifdef. Solution: Remove the #ifdef and #else part.
1 parent eb992cb commit ad2cfb5

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

src/option.c

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4129,22 +4129,13 @@ set_init_3(void)
41294129
options[idx3].def_val[VI_DEFAULT] = p_shcf;
41304130
}
41314131

4132-
# ifdef WIN3264
41334132
/* Somehow Win32 requires the quotes around the redirection too */
41344133
idx3 = findoption((char_u *)"sxq");
41354134
if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
41364135
{
41374136
p_sxq = (char_u *)"\"";
41384137
options[idx3].def_val[VI_DEFAULT] = p_sxq;
41394138
}
4140-
# else
4141-
idx3 = findoption((char_u *)"shq");
4142-
if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
4143-
{
4144-
p_shq = (char_u *)"\"";
4145-
options[idx3].def_val[VI_DEFAULT] = p_shq;
4146-
}
4147-
# endif
41484139
}
41494140
else if (strstr((char *)gettail(p_sh), "cmd.exe") != NULL)
41504141
{

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -764,6 +764,8 @@ static char *(features[]) =
764764

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
441,
767769
/**/
768770
440,
769771
/**/

0 commit comments

Comments
 (0)