]> git.pld-linux.org Git - packages/vim.git/blame - 7.2.229
- new
[packages/vim.git] / 7.2.229
CommitLineData
215db38d
AG
1To: vim-dev@vim.org
2Subject: Patch 7.2.229
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.2.229
11Problem: Warning for shadowed variable.
12Solution: Rename "wait" to "wait_time".
13Files: src/os_unix.c
14
15
16*** ../vim-7.2.228/src/os_unix.c 2009-06-16 15:12:11.000000000 +0200
17--- src/os_unix.c 2009-07-09 16:24:14.000000000 +0200
18***************
19*** 1138,1147 ****
20 * to happen).
21 */
22 {
23! long wait;
24! for (wait = 0; !sigcont_received && wait <= 3L; wait++)
25 /* Loop is not entered most of the time */
26! mch_delay(wait, FALSE);
27 }
28 # endif
29
30--- 1138,1147 ----
31 * to happen).
32 */
33 {
34! long wait_time;
35! for (wait_time = 0; !sigcont_received && wait_time <= 3L; wait_time++)
36 /* Loop is not entered most of the time */
37! mch_delay(wait_time, FALSE);
38 }
39 # endif
40
41*** ../vim-7.2.228/src/version.c 2009-07-09 21:22:36.000000000 +0200
42--- src/version.c 2009-07-14 12:18:21.000000000 +0200
43***************
44*** 678,679 ****
45--- 678,681 ----
46 { /* Add new patch number below this line */
47+ /**/
48+ 229,
49 /**/
50
51--
52From "know your smileys":
53 :-) Funny
54 |-) Funny Oriental
55 (-: Funny Australian
56
57 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
58/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
59\\\ download, build and distribute -- http://www.A-A-P.org ///
60 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.029442 seconds and 4 git commands to generate.