]> git.pld-linux.org Git - packages/vim.git/blob - 7.3.033
- new
[packages/vim.git] / 7.3.033
1 To: vim-dev@vim.org
2 Subject: Patch 7.3.033
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 7.3.033 (after 7.3.032)
11 Problem:    Can't build without FEAT_LOCALMAP.
12 Solution:   Add an #ifdef. (John Marriott)
13 Files:      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 -- 
43 Futility Factor: No experiment is ever a complete failure - it can always
44 serve 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.031507 seconds and 3 git commands to generate.