From 367bec852e494e2cdcf092237dfe9fd15b874b1e Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 11 Apr 2011 14:26:19 +0200 Subject: [PATCH] updated for version 7.3.157 Problem: Superfluous assignment. Solution: Remove assignment. --- src/misc1.c | 3 +-- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/misc1.c b/src/misc1.c index ca7e25d13..b894d0ddc 100644 --- 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 index b221404e1..485073c5c 100644 --- a/src/version.c +++ b/src/version.c @@ -714,6 +714,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 157, /**/ 156, /**/