]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.157
- new
[packages/vim.git] / 7.3.157
CommitLineData
9a1bc5e5
ER
1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.157
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.3.157
11Problem: Superfluous assignment.
12Solution: Remove assignment.
13Files: src/misc1.c
14
15
16*** ../vim-7.3.156/src/misc1.c 2011-03-22 13:07:19.000000000 +0100
17--- src/misc1.c 2011-04-11 14:11:17.000000000 +0200
18***************
19*** 6773,6780 ****
20 {
21 curwin->w_cursor.lnum = our_paren_pos.lnum;
22 curwin->w_cursor.col = col;
23! if ((trypos = find_match_paren(ind_maxparen,
24! ind_maxcomment)) != NULL)
25 amount += ind_unclosed2;
26 else
27 amount += ind_unclosed;
28--- 6775,6781 ----
29 {
30 curwin->w_cursor.lnum = our_paren_pos.lnum;
31 curwin->w_cursor.col = col;
32! if (find_match_paren(ind_maxparen, ind_maxcomment) != NULL)
33 amount += ind_unclosed2;
34 else
35 amount += ind_unclosed;
36*** ../vim-7.3.156/src/version.c 2011-04-11 14:24:33.000000000 +0200
37--- src/version.c 2011-04-11 14:25:36.000000000 +0200
38***************
39*** 716,717 ****
40--- 716,719 ----
41 { /* Add new patch number below this line */
42+ /**/
43+ 157,
44 /**/
45
46--
47A radioactive cat has eighteen half-lives.
48
49 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
50/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
51\\\ an exciting new programming language -- http://www.Zimbu.org ///
52 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.030514 seconds and 4 git commands to generate.