summaryrefslogtreecommitdiff
path: root/src/misc1.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2011-04-11 14:26:19 +0200
committerBram Moolenaar <Bram@vim.org>2011-04-11 14:26:19 +0200
commit367bec852e494e2cdcf092237dfe9fd15b874b1e (patch)
tree0533521ff06aa40ad8cb4543df2648ee3e77ab80 /src/misc1.c
parent639304ddb1bcc70b67b3eaf50cefb30415526aa8 (diff)
downloadvim-git-367bec852e494e2cdcf092237dfe9fd15b874b1e.tar.gz
updated for version 7.3.157v7.3.157
Problem: Superfluous assignment. Solution: Remove assignment.
Diffstat (limited to 'src/misc1.c')
-rw-r--r--src/misc1.c3
1 files changed, 1 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;