commit | 367bec852e494e2cdcf092237dfe9fd15b874b1e | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Mon Apr 11 14:26:19 2011 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Mon Apr 11 14:26:19 2011 +0200 |
tree | 0533521ff06aa40ad8cb4543df2648ee3e77ab80 | |
parent | 639304ddb1bcc70b67b3eaf50cefb30415526aa8 [diff] [blame] |
updated for version 7.3.157 Problem: Superfluous assignment. Solution: Remove assignment.
diff --git a/src/misc1.c b/src/misc1.c index ca7e25d..b894d0d 100644 --- a/src/misc1.c +++ b/src/misc1.c
@@ -6773,8 +6773,7 @@ { 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;