Skip to content

Commit dffb252

Browse files
committed
updated for version 7.3.1190
Problem: Compiler warning for parentheses. (Christian Wellenbrock) Solution: Change #ifdef.
1 parent cba3045 commit dffb252

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

src/ex_docmd.c

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8568,11 +8568,13 @@ ex_operators(eap)
85688568
break;
85698569

85708570
default: /* CMD_rshift or CMD_lshift */
8571-
if ((eap->cmdidx == CMD_rshift)
8571+
if (
85728572
#ifdef FEAT_RIGHTLEFT
8573-
^ curwin->w_p_rl
8573+
(eap->cmdidx == CMD_rshift) ^ curwin->w_p_rl
8574+
#else
8575+
eap->cmdidx == CMD_rshift
85748576
#endif
8575-
)
8577+
)
85768578
oa.op_type = OP_RSHIFT;
85778579
else
85788580
oa.op_type = OP_LSHIFT;

src/version.c

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

729729
static int included_patches[] =
730730
{ /* Add new patch number below this line */
731+
/**/
732+
1190,
731733
/**/
732734
1189,
733735
/**/

0 commit comments

Comments
 (0)