]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.621
- add patches 7.3.619-743
[packages/vim.git] / 7.3.621
CommitLineData
5a088057
KK
1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.621
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.621
11Problem: Compiler warnings on 64 bit windows.
12Solution: Add type casts. (Mike Williams)
13Files: src/ex_docmd.c, src/search.c
14
15
16*** ../vim-7.3.620/src/ex_docmd.c 2012-07-27 21:12:03.000000000 +0200
17--- src/ex_docmd.c 2012-08-02 21:19:22.000000000 +0200
18***************
19*** 3392,3398 ****
20 /* Find start of last argument (argument just before cursor): */
21 p = buff;
22 xp->xp_pattern = p;
23! len = STRLEN(buff);
24 while (*p && p < buff + len)
25 {
26 if (*p == ' ' || *p == TAB)
27--- 3392,3398 ----
28 /* Find start of last argument (argument just before cursor): */
29 p = buff;
30 xp->xp_pattern = p;
31! len = (int)STRLEN(buff);
32 while (*p && p < buff + len)
33 {
34 if (*p == ' ' || *p == TAB)
35*** ../vim-7.3.620/src/search.c 2012-07-29 12:55:21.000000000 +0200
36--- src/search.c 2012-08-02 21:20:02.000000000 +0200
37***************
38*** 4621,4627 ****
39 {
40 /* searching backwards, so set pos to last line and col */
41 pos.lnum = curwin->w_buffer->b_ml.ml_line_count;
42! pos.col = STRLEN(ml_get(curwin->w_buffer->b_ml.ml_line_count));
43 }
44 }
45
46--- 4621,4628 ----
47 {
48 /* searching backwards, so set pos to last line and col */
49 pos.lnum = curwin->w_buffer->b_ml.ml_line_count;
50! pos.col = (colnr_T)STRLEN(
51! ml_get(curwin->w_buffer->b_ml.ml_line_count));
52 }
53 }
54
55*** ../vim-7.3.620/src/version.c 2012-08-02 21:21:43.000000000 +0200
56--- src/version.c 2012-08-02 21:23:13.000000000 +0200
57***************
58*** 716,717 ****
59--- 716,719 ----
60 { /* Add new patch number below this line */
61+ /**/
62+ 621,
63 /**/
64
65--
66hundred-and-one symptoms of being an internet addict:
67200. You really believe in the concept of a "paperless" office.
68
69 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
70/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
71\\\ an exciting new programming language -- http://www.Zimbu.org ///
72 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.110588 seconds and 4 git commands to generate.