]> git.pld-linux.org Git - packages/vim.git/blob - 7.3.211
- new
[packages/vim.git] / 7.3.211
1 To: vim_dev@googlegroups.com
2 Subject: Patch 7.3.211
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.211 (after 7.3.210)
11 Problem:    Compiler warning.
12 Solution:   Add type cast.
13 Files:      src/if_cscope.c
14
15
16 *** ../mercurial/vim73/src/if_cscope.c  2011-06-12 20:42:17.000000000 +0200
17 --- src/if_cscope.c     2011-06-12 21:22:53.000000000 +0200
18 ***************
19 *** 2518,2524 ****
20         /* Check for csdir to be non empty to avoid empty path concatenated to
21          * cscope output. TODO: avoid the unnecessary alloc/free of fullname. */
22         vim_free(fullname);
23 !       fullname = concat_fnames(csdir, (char_u *)name, TRUE);
24       }
25       else
26         (void)sprintf(fullname, "%s", name);
27 --- 2518,2524 ----
28         /* Check for csdir to be non empty to avoid empty path concatenated to
29          * cscope output. TODO: avoid the unnecessary alloc/free of fullname. */
30         vim_free(fullname);
31 !       fullname = (char *)concat_fnames(csdir, (char_u *)name, TRUE);
32       }
33       else
34         (void)sprintf(fullname, "%s", name);
35 *** ../vim-7.3.210/src/version.c        2011-06-12 20:42:17.000000000 +0200
36 --- src/version.c       2011-06-12 21:24:03.000000000 +0200
37 ***************
38 *** 711,712 ****
39 --- 711,714 ----
40   {   /* Add new patch number below this line */
41 + /**/
42 +     211,
43   /**/
44
45 -- 
46 Did you ever see a "Hit any key to continue" message in a music piece?
47
48  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
49 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
50 \\\  an exciting new programming language -- http://www.Zimbu.org        ///
51  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.034852 seconds and 3 git commands to generate.