forked from aniani/vim
updated for version 7.3.1190
Problem: Compiler warning for parentheses. (Christian Wellenbrock) Solution: Change #ifdef.
This commit is contained in:
@@ -8568,9 +8568,11 @@ ex_operators(eap)
|
||||
break;
|
||||
|
||||
default: /* CMD_rshift or CMD_lshift */
|
||||
if ((eap->cmdidx == CMD_rshift)
|
||||
if (
|
||||
#ifdef FEAT_RIGHTLEFT
|
||||
^ curwin->w_p_rl
|
||||
(eap->cmdidx == CMD_rshift) ^ curwin->w_p_rl
|
||||
#else
|
||||
eap->cmdidx == CMD_rshift
|
||||
#endif
|
||||
)
|
||||
oa.op_type = OP_RSHIFT;
|
||||
|
@@ -728,6 +728,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
1190,
|
||||
/**/
|
||||
1189,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user