]> git.pld-linux.org Git - packages/vim.git/blob - 7.3.682
- add patches 7.3.619-743
[packages/vim.git] / 7.3.682
1 To: vim_dev@googlegroups.com
2 Subject: Patch 7.3.682
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.682 (after 7.3.677)
11 Problem:    Compiler complains about incompatible types.
12 Solution:   Remove type casts. (hint by Danek Duvall)
13 Files:      src/edit.c 
14
15
16 *** ../vim-7.3.681/src/edit.c   2012-08-08 18:01:00.000000000 +0200
17 --- src/edit.c  2012-10-04 22:33:22.000000000 +0200
18 ***************
19 *** 4194,4201 ****
20                         ins_buf->b_fname == NULL
21                             ? buf_spname(ins_buf)
22                             : ins_buf->b_sfname == NULL
23 !                               ? (char *)ins_buf->b_fname
24 !                               : (char *)ins_buf->b_sfname);
25                 (void)msg_trunc_attr(IObuff, TRUE, hl_attr(HLF_R));
26             }
27             else if (*e_cpt == NUL)
28 --- 4194,4201 ----
29                         ins_buf->b_fname == NULL
30                             ? buf_spname(ins_buf)
31                             : ins_buf->b_sfname == NULL
32 !                               ? ins_buf->b_fname
33 !                               : ins_buf->b_sfname);
34                 (void)msg_trunc_attr(IObuff, TRUE, hl_attr(HLF_R));
35             }
36             else if (*e_cpt == NUL)
37 *** ../vim-7.3.681/src/version.c        2012-10-03 21:48:38.000000000 +0200
38 --- src/version.c       2012-10-04 22:36:15.000000000 +0200
39 ***************
40 *** 721,722 ****
41 --- 721,724 ----
42   {   /* Add new patch number below this line */
43 + /**/
44 +     682,
45   /**/
46
47 -- 
48 Dogs must have a permit signed by the mayor in order to congregate in groups
49 of three or more on private property.
50                 [real standing law in Oklahoma, United States of America]
51
52  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
53 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
54 \\\  an exciting new programming language -- http://www.Zimbu.org        ///
55  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.113173 seconds and 3 git commands to generate.