]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.033
- new: 7.3.264
[packages/vim.git] / 7.3.033
CommitLineData
d7160e4c
ER
1To: vim-dev@vim.org
2Subject: Patch 7.3.033
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.033 (after 7.3.032)
11Problem: Can't build without FEAT_LOCALMAP.
12Solution: Add an #ifdef. (John Marriott)
13Files: src/getchar.c
14
15
16*** ../vim-7.3.032/src/getchar.c 2010-10-20 21:22:17.000000000 +0200
17--- src/getchar.c 2010-10-22 22:09:40.000000000 +0200
18***************
19*** 5086,5092 ****
20--- 5086,5096 ----
21 if (mp_ptr != NULL)
22 *mp_ptr = mp;
23 if (local_ptr != NULL)
24+ #ifdef FEAT_LOCALMAP
25 *local_ptr = local;
26+ #else
27+ *local_ptr = 0;
28+ #endif
29 return mp->m_str;
30 }
31 }
32*** ../vim-7.3.032/src/version.c 2010-10-20 21:22:17.000000000 +0200
33--- src/version.c 2010-10-22 21:18:30.000000000 +0200
34***************
35*** 716,717 ****
36--- 716,719 ----
37 { /* Add new patch number below this line */
38+ /**/
39+ 33,
40 /**/
41
42--
43Futility Factor: No experiment is ever a complete failure - it can always
44serve as a negative example.
45
46 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
47/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
48\\\ download, build and distribute -- http://www.A-A-P.org ///
49 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.044152 seconds and 4 git commands to generate.