mirror of
https://github.com/vim/vim.git
synced 2025-07-04 23:07:33 -04:00
patch 9.0.1401: condition is always true
Problem: Condition is always true. Solution: Remove the condition. (closes #12139)
This commit is contained in:
parent
5145c9a829
commit
c481ad38f0
@ -6885,8 +6885,6 @@ handle_subscript(
|
||||
*arg = skipwhite(p + 2);
|
||||
else
|
||||
*arg = p + 2;
|
||||
if (ret == OK)
|
||||
{
|
||||
if (VIM_ISWHITE(**arg))
|
||||
{
|
||||
emsg(_(e_no_white_space_allowed_before_parenthesis));
|
||||
@ -6899,7 +6897,6 @@ handle_subscript(
|
||||
// expr->name()
|
||||
ret = eval_method(arg, rettv, evalarg, verbose);
|
||||
}
|
||||
}
|
||||
// "." is ".name" lookup when we found a dict or when evaluating and
|
||||
// scriptversion is at least 2, where string concatenation is "..".
|
||||
else if (**arg == '['
|
||||
|
@ -695,6 +695,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
1401,
|
||||
/**/
|
||||
1400,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user