|
Karsten Hopp |
9090be |
To: vim-dev@vim.org
|
|
Karsten Hopp |
9090be |
Subject: Patch 7.0.011
|
|
Karsten Hopp |
9090be |
Fcc: outbox
|
|
Karsten Hopp |
9090be |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
9090be |
Mime-Version: 1.0
|
|
Karsten Hopp |
9090be |
Content-Type: text/plain; charset=ISO-8859-1
|
|
Karsten Hopp |
9090be |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
9090be |
------------
|
|
Karsten Hopp |
9090be |
|
|
Karsten Hopp |
9090be |
Patch 7.0.011
|
|
Karsten Hopp |
9090be |
Problem: Can't compile without the folding and with the eval feature.
|
|
Karsten Hopp |
9090be |
Solution: Add an #ifdef. (Vallimar)
|
|
Karsten Hopp |
9090be |
Files: src/option.c
|
|
Karsten Hopp |
9090be |
|
|
Karsten Hopp |
9090be |
|
|
Karsten Hopp |
9090be |
*** ../vim-7.0.010/src/option.c Wed May 10 15:22:50 2006
|
|
Karsten Hopp |
9090be |
--- src/option.c Wed May 10 19:37:10 2006
|
|
Karsten Hopp |
9090be |
***************
|
|
Karsten Hopp |
9090be |
*** 5227,5239 ****
|
|
Karsten Hopp |
9090be |
case PV_STL: return &curwin->w_p_stl_flags;
|
|
Karsten Hopp |
9090be |
#endif
|
|
Karsten Hopp |
9090be |
#ifdef FEAT_EVAL
|
|
Karsten Hopp |
9090be |
case PV_FDE: return &curwin->w_p_fde_flags;
|
|
Karsten Hopp |
9090be |
case PV_FDT: return &curwin->w_p_fdt_flags;
|
|
Karsten Hopp |
9090be |
# ifdef FEAT_BEVAL
|
|
Karsten Hopp |
9090be |
case PV_BEXPR: return &curbuf->b_p_bexpr_flags;
|
|
Karsten Hopp |
9090be |
# endif
|
|
Karsten Hopp |
9090be |
- #endif
|
|
Karsten Hopp |
9090be |
- #if defined(FEAT_EVAL)
|
|
Karsten Hopp |
9090be |
# if defined(FEAT_CINDENT)
|
|
Karsten Hopp |
9090be |
case PV_INDE: return &curbuf->b_p_inde_flags;
|
|
Karsten Hopp |
9090be |
# endif
|
|
Karsten Hopp |
9090be |
--- 5227,5239 ----
|
|
Karsten Hopp |
9090be |
case PV_STL: return &curwin->w_p_stl_flags;
|
|
Karsten Hopp |
9090be |
#endif
|
|
Karsten Hopp |
9090be |
#ifdef FEAT_EVAL
|
|
Karsten Hopp |
9090be |
+ # ifdef FEAT_FOLDING
|
|
Karsten Hopp |
9090be |
case PV_FDE: return &curwin->w_p_fde_flags;
|
|
Karsten Hopp |
9090be |
case PV_FDT: return &curwin->w_p_fdt_flags;
|
|
Karsten Hopp |
9090be |
+ # endif
|
|
Karsten Hopp |
9090be |
# ifdef FEAT_BEVAL
|
|
Karsten Hopp |
9090be |
case PV_BEXPR: return &curbuf->b_p_bexpr_flags;
|
|
Karsten Hopp |
9090be |
# endif
|
|
Karsten Hopp |
9090be |
# if defined(FEAT_CINDENT)
|
|
Karsten Hopp |
9090be |
case PV_INDE: return &curbuf->b_p_inde_flags;
|
|
Karsten Hopp |
9090be |
# endif
|
|
Karsten Hopp |
9090be |
*** ../vim-7.0.010/src/version.c Wed May 10 17:55:37 2006
|
|
Karsten Hopp |
9090be |
--- src/version.c Thu May 11 19:22:54 2006
|
|
Karsten Hopp |
9090be |
***************
|
|
Karsten Hopp |
9090be |
*** 668,669 ****
|
|
Karsten Hopp |
9090be |
--- 668,671 ----
|
|
Karsten Hopp |
9090be |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
9090be |
+ /**/
|
|
Karsten Hopp |
9090be |
+ 11,
|
|
Karsten Hopp |
9090be |
/**/
|
|
Karsten Hopp |
9090be |
|
|
Karsten Hopp |
9090be |
--
|
|
Karsten Hopp |
9090be |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
9090be |
112. You are amazed that anyone uses a phone without a modem on it...let
|
|
Karsten Hopp |
9090be |
alone hear actual voices.
|
|
Karsten Hopp |
9090be |
|
|
Karsten Hopp |
9090be |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
9090be |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
9090be |
\\\ download, build and distribute -- http://www.A-A-P.org ///
|
|
Karsten Hopp |
9090be |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|