comparison src/misc1.c @ 2762:9a98d8562637 v7.3.157

updated for version 7.3.157 Problem: Superfluous assignment. Solution: Remove assignment.
author Bram Moolenaar <bram@vim.org>
date Mon, 11 Apr 2011 14:26:19 +0200
parents 2e72d84e8965
children b5f774f15927
comparison
equal deleted inserted replaced
2761:f931f377e853 2762:9a98d8562637
6771 amount += ind_unclosed; 6771 amount += ind_unclosed;
6772 else 6772 else
6773 { 6773 {
6774 curwin->w_cursor.lnum = our_paren_pos.lnum; 6774 curwin->w_cursor.lnum = our_paren_pos.lnum;
6775 curwin->w_cursor.col = col; 6775 curwin->w_cursor.col = col;
6776 if ((trypos = find_match_paren(ind_maxparen, 6776 if (find_match_paren(ind_maxparen, ind_maxcomment) != NULL)
6777 ind_maxcomment)) != NULL)
6778 amount += ind_unclosed2; 6777 amount += ind_unclosed2;
6779 else 6778 else
6780 amount += ind_unclosed; 6779 amount += ind_unclosed;
6781 } 6780 }
6782 /* 6781 /*