]> git.pld-linux.org Git - packages/vim.git/blame - 7.2.056
- new
[packages/vim.git] / 7.2.056
CommitLineData
65bfde4c
AG
1To: vim-dev@vim.org
2Subject: Patch 7.2.056
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=ISO-8859-1
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.2.056 (after 7.2.050)
11Problem: Tests 58 and 59 fail.
12Solution: Don't invoke fwrite() with a zero length. (Dominique Pelle)
13Files: src/spell.c
14
15
16*** ../vim-7.2.055/src/spell.c Fri Nov 28 21:26:50 2008
17--- src/spell.c Sat Nov 29 19:58:21 2008
18***************
19*** 8112,8118 ****
20 p = rr == 1 ? ftp->ft_from : ftp->ft_to;
21 l = (int)STRLEN(p);
22 putc(l, fd);
23! fwv &= fwrite(p, l, (size_t)1, fd);
24 }
25 }
26
27--- 8218,8225 ----
28 p = rr == 1 ? ftp->ft_from : ftp->ft_to;
29 l = (int)STRLEN(p);
30 putc(l, fd);
31! if (l > 0)
32! fwv &= fwrite(p, l, (size_t)1, fd);
33 }
34 }
35
36*** ../vim-7.2.055/src/version.c Fri Nov 28 21:26:50 2008
37--- src/version.c Sat Nov 29 20:10:05 2008
38***************
39*** 678,679 ****
40--- 678,681 ----
41 { /* Add new patch number below this line */
42+ /**/
43+ 56,
44 /**/
45
46--
47GUARD #1: Where'd you get the coconut?
48ARTHUR: We found them.
49GUARD #1: Found them? In Mercea? The coconut's tropical!
50ARTHUR: What do you mean?
51GUARD #1: Well, this is a temperate zone.
52 The Quest for the Holy Grail (Monty Python)
53
54 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
55/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
56\\\ download, build and distribute -- http://www.A-A-P.org ///
57 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.046564 seconds and 4 git commands to generate.