]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.157 v7.3.157
authorBram Moolenaar <Bram@vim.org>
Mon, 11 Apr 2011 12:26:19 +0000 (14:26 +0200)
committerBram Moolenaar <Bram@vim.org>
Mon, 11 Apr 2011 12:26:19 +0000 (14:26 +0200)
Problem:    Superfluous assignment.
Solution:   Remove assignment.

src/misc1.c
src/version.c

index ca7e25d1391e006529f0f45ad021bb4255857473..b894d0ddcbfdc85e371c10f479c7c2970802a8a2 100644 (file)
@@ -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;
index b221404e1612724996d0a8b26b6cbb0e30474c89..485073c5c172cd5b12b39378bcba84fa6d83ec11 100644 (file)
@@ -714,6 +714,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    157,
 /**/
     156,
 /**/