]> git.pld-linux.org Git - packages/vim.git/blob - 7.2.072
- updated to 7.2.102
[packages/vim.git] / 7.2.072
1 To: vim-dev@vim.org
2 Subject: Patch 7.2.072 (extra)
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=ISO-8859-1
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 7.2.072 (extra)
11 Problem:    Compiler warning in Sniff code.
12 Solution:   Use return value of pipe(). (Dominique Pelle)
13 Files:      src/if_sniff.c
14
15
16 *** ../vim-7.2.071/src/if_sniff.c       Sat Nov 15 14:11:10 2008
17 --- src/if_sniff.c      Sat Dec  6 14:01:57 2008
18 ***************
19 *** 716,723 ****
20   #else         /* UNIX Version of the Code */
21       int ToSniffEmacs[2], FromSniffEmacs[2];
22   
23 !     pipe(ToSniffEmacs);
24 !     pipe(FromSniffEmacs);
25   
26       /* fork */
27       if ((sniffemacs_pid=fork()) == 0)
28 --- 714,723 ----
29   #else         /* UNIX Version of the Code */
30       int ToSniffEmacs[2], FromSniffEmacs[2];
31   
32 !     if (pipe(ToSniffEmacs) != 0)
33 !       return 1;
34 !     if (pipe(FromSniffEmacs) != 0)
35 !       return 1;
36   
37       /* fork */
38       if ((sniffemacs_pid=fork()) == 0)
39 *** ../vim-7.2.071/src/version.c        Wed Dec 24 12:20:10 2008
40 --- src/version.c       Wed Dec 24 12:42:13 2008
41 ***************
42 *** 678,679 ****
43 --- 678,681 ----
44   {   /* Add new patch number below this line */
45 + /**/
46 +     72,
47   /**/
48
49 -- 
50 SIGIRO -- irony detected (iron core dumped)
51
52  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
53 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
54 \\\        download, build and distribute -- http://www.A-A-P.org        ///
55  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.030232 seconds and 3 git commands to generate.