]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.211
- new
[packages/vim.git] / 7.3.211
CommitLineData
a2e11672
AG
1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.211
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.211 (after 7.3.210)
11Problem: Compiler warning.
12Solution: Add type cast.
13Files: 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--
46Did 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.187117 seconds and 4 git commands to generate.