mirror of
https://github.com/vim/vim.git
synced 2025-10-18 07:54:29 -04:00
updated for version 7.3.157
Problem: Superfluous assignment. Solution: Remove assignment.
This commit is contained in:
@@ -6773,8 +6773,7 @@ get_c_indent()
|
|||||||
{
|
{
|
||||||
curwin->w_cursor.lnum = our_paren_pos.lnum;
|
curwin->w_cursor.lnum = our_paren_pos.lnum;
|
||||||
curwin->w_cursor.col = col;
|
curwin->w_cursor.col = col;
|
||||||
if ((trypos = find_match_paren(ind_maxparen,
|
if (find_match_paren(ind_maxparen, ind_maxcomment) != NULL)
|
||||||
ind_maxcomment)) != NULL)
|
|
||||||
amount += ind_unclosed2;
|
amount += ind_unclosed2;
|
||||||
else
|
else
|
||||||
amount += ind_unclosed;
|
amount += ind_unclosed;
|
||||||
|
@@ -714,6 +714,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 */
|
||||||
|
/**/
|
||||||
|
157,
|
||||||
/**/
|
/**/
|
||||||
156,
|
156,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user