]> git.pld-linux.org Git - packages/vim.git/blob - 7.3.157
- new
[packages/vim.git] / 7.3.157
1 To: vim_dev@googlegroups.com
2 Subject: Patch 7.3.157
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 7.3.157
11 Problem:    Superfluous assignment.
12 Solution:   Remove assignment.
13 Files:      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 -- 
47 A 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.032018 seconds and 3 git commands to generate.