]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.204
- new
[packages/vim.git] / 7.3.204
CommitLineData
a2e11672
AG
1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.204
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.204 (after 7.3.201)
11Problem: Compiler warning.
12Solution: Add type cast. (Mike Williams)
13Files: src/misc1.c
14
15
16*** ../mercurial/vim73/src/misc1.c 2011-05-25 15:16:06.000000000 +0200
17--- src/misc1.c 2011-05-25 17:25:10.000000000 +0200
18***************
19*** 7657,7663 ****
20 * not the one from "if () {". */
21 if (*l == '}')
22 curwin->w_cursor.col =
23! (l - ml_get_curline()) + 1;
24
25 if ((trypos = find_start_brace(ind_maxcomment))
26 == NULL
27--- 7657,7663 ----
28 * not the one from "if () {". */
29 if (*l == '}')
30 curwin->w_cursor.col =
31! (colnr_T)(l - ml_get_curline()) + 1;
32
33 if ((trypos = find_start_brace(ind_maxcomment))
34 == NULL
35*** ../vim-7.3.203/src/version.c 2011-05-25 17:06:16.000000000 +0200
36--- src/version.c 2011-05-25 17:29:32.000000000 +0200
37***************
38*** 711,712 ****
39--- 711,714 ----
40 { /* Add new patch number below this line */
41+ /**/
42+ 204,
43 /**/
44
45--
46In a world without walls and borders, who needs windows and gates?
47
48 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
49/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
50\\\ an exciting new programming language -- http://www.Zimbu.org ///
51 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.027252 seconds and 4 git commands to generate.