]> git.ipfire.org Git - people/arne_f/ipfire-3.x.git/blame - vim/patches/vim-7.3.525.patch0
vim: Import latest patches from upstream.
[people/arne_f/ipfire-3.x.git] / vim / patches / vim-7.3.525.patch0
CommitLineData
c6060300
MT
1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.525
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.525
11Problem: Compiler warning on 64 bit MS-Windows.
12Solution: Add type cast. (Mike Williams)
13Files: src/ex_getln.c
14
15
16*** ../vim-7.3.524/src/ex_getln.c 2012-04-30 18:48:38.000000000 +0200
17--- src/ex_getln.c 2012-05-23 20:33:16.000000000 +0200
18***************
19*** 5263,5269 ****
20 {
21 static char_u compl[2] = { NUL, NUL };
22 char *short_names = ":=@>?/";
23! int short_names_count = STRLEN(short_names);
24 int history_name_count = sizeof(history_names) / sizeof(char *) - 1;
25
26 if (idx < short_names_count)
27--- 5263,5269 ----
28 {
29 static char_u compl[2] = { NUL, NUL };
30 char *short_names = ":=@>?/";
31! int short_names_count = (int)STRLEN(short_names);
32 int history_name_count = sizeof(history_names) / sizeof(char *) - 1;
33
34 if (idx < short_names_count)
35*** ../vim-7.3.524/src/version.c 2012-05-18 21:53:29.000000000 +0200
36--- src/version.c 2012-05-25 11:01:51.000000000 +0200
37***************
38*** 716,717 ****
39--- 716,719 ----
40 { /* Add new patch number below this line */
41+ /**/
42+ 525,
43 /**/
44
45--
46For humans, honesty is a matter of degree. Engineers are always honest in
47matters of technology and human relationships. That's why it's a good idea
48to keep engineers away from customers, romantic interests, and other people
49who can't handle the truth.
50 (Scott Adams - The Dilbert principle)
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 ///