# HG changeset patch # User Bram Moolenaar # Date 1302524779 -7200 # Node ID 9a98d8562637d4c90439125a14224a3403d8bee3 # Parent f931f377e853e1c17d6e7fdc9ff05aef5a2c323b updated for version 7.3.157 Problem: Superfluous assignment. Solution: Remove assignment. diff --git a/src/misc1.c b/src/misc1.c --- a/src/misc1.c +++ b/src/misc1.c @@ -6773,8 +6773,7 @@ get_c_indent() { curwin->w_cursor.lnum = our_paren_pos.lnum; curwin->w_cursor.col = col; - if ((trypos = find_match_paren(ind_maxparen, - ind_maxcomment)) != NULL) + if (find_match_paren(ind_maxparen, ind_maxcomment) != NULL) amount += ind_unclosed2; else amount += ind_unclosed; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -715,6 +715,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 157, +/**/ 156, /**/ 155,