]> git.pld-linux.org Git - packages/vim.git/blame - 7.0.011
- updated to 0.7.3
[packages/vim.git] / 7.0.011
CommitLineData
5ee5dc07
AM
1To: vim-dev@vim.org
2Subject: Patch 7.0.011
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=ISO-8859-1
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.0.011
11Problem: Can't compile without the folding and with the eval feature.
12Solution: Add an #ifdef. (Vallimar)
13Files: src/option.c
14
15
16*** ../vim-7.0.010/src/option.c Wed May 10 15:22:50 2006
17--- src/option.c Wed May 10 19:37:10 2006
18***************
19*** 5227,5239 ****
20 case PV_STL: return &curwin->w_p_stl_flags;
21 #endif
22 #ifdef FEAT_EVAL
23 case PV_FDE: return &curwin->w_p_fde_flags;
24 case PV_FDT: return &curwin->w_p_fdt_flags;
25 # ifdef FEAT_BEVAL
26 case PV_BEXPR: return &curbuf->b_p_bexpr_flags;
27 # endif
28- #endif
29- #if defined(FEAT_EVAL)
30 # if defined(FEAT_CINDENT)
31 case PV_INDE: return &curbuf->b_p_inde_flags;
32 # endif
33--- 5227,5239 ----
34 case PV_STL: return &curwin->w_p_stl_flags;
35 #endif
36 #ifdef FEAT_EVAL
37+ # ifdef FEAT_FOLDING
38 case PV_FDE: return &curwin->w_p_fde_flags;
39 case PV_FDT: return &curwin->w_p_fdt_flags;
40+ # endif
41 # ifdef FEAT_BEVAL
42 case PV_BEXPR: return &curbuf->b_p_bexpr_flags;
43 # endif
44 # if defined(FEAT_CINDENT)
45 case PV_INDE: return &curbuf->b_p_inde_flags;
46 # endif
47*** ../vim-7.0.010/src/version.c Wed May 10 17:55:37 2006
48--- src/version.c Thu May 11 19:22:54 2006
49***************
50*** 668,669 ****
51--- 668,671 ----
52 { /* Add new patch number below this line */
53+ /**/
54+ 11,
55 /**/
56
57--
58hundred-and-one symptoms of being an internet addict:
59112. You are amazed that anyone uses a phone without a modem on it...let
60 alone hear actual voices.
61
62 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
63/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
64\\\ download, build and distribute -- http://www.A-A-P.org ///
65 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.063516 seconds and 4 git commands to generate.