|
Karsten Hopp |
4bc214 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
4bc214 |
Subject: Patch 7.4.838
|
|
Karsten Hopp |
4bc214 |
Fcc: outbox
|
|
Karsten Hopp |
4bc214 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
4bc214 |
Mime-Version: 1.0
|
|
Karsten Hopp |
4bc214 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
4bc214 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
4bc214 |
------------
|
|
Karsten Hopp |
4bc214 |
|
|
Karsten Hopp |
4bc214 |
Patch 7.4.838 (after 7.4.833)
|
|
Karsten Hopp |
4bc214 |
Problem: Can't compile without the crypt feature. (John Marriott)
|
|
Karsten Hopp |
4bc214 |
Solution: Add #ifdef.
|
|
Karsten Hopp |
4bc214 |
Files: src/option.c
|
|
Karsten Hopp |
4bc214 |
|
|
Karsten Hopp |
4bc214 |
|
|
Karsten Hopp |
4bc214 |
*** ../vim-7.4.837/src/option.c 2015-08-25 15:39:51.459826645 +0200
|
|
Karsten Hopp |
4bc214 |
--- src/option.c 2015-08-25 21:25:19.909499949 +0200
|
|
Karsten Hopp |
4bc214 |
***************
|
|
Karsten Hopp |
4bc214 |
*** 3654,3661 ****
|
|
Karsten Hopp |
4bc214 |
if (!(options[i].flags & P_NODEFAULT)
|
|
Karsten Hopp |
4bc214 |
&& (opt_flags == 0
|
|
Karsten Hopp |
4bc214 |
|| (options[i].var != (char_u *)&p_enc
|
|
Karsten Hopp |
4bc214 |
&& options[i].var != (char_u *)&p_cm
|
|
Karsten Hopp |
4bc214 |
! && options[i].var != (char_u *)&p_key)))
|
|
Karsten Hopp |
4bc214 |
set_option_default(i, opt_flags, p_cp);
|
|
Karsten Hopp |
4bc214 |
|
|
Karsten Hopp |
4bc214 |
#ifdef FEAT_WINDOWS
|
|
Karsten Hopp |
4bc214 |
--- 3654,3664 ----
|
|
Karsten Hopp |
4bc214 |
if (!(options[i].flags & P_NODEFAULT)
|
|
Karsten Hopp |
4bc214 |
&& (opt_flags == 0
|
|
Karsten Hopp |
4bc214 |
|| (options[i].var != (char_u *)&p_enc
|
|
Karsten Hopp |
4bc214 |
+ #if defined(FEAT_CRYPT)
|
|
Karsten Hopp |
4bc214 |
&& options[i].var != (char_u *)&p_cm
|
|
Karsten Hopp |
4bc214 |
! && options[i].var != (char_u *)&p_key
|
|
Karsten Hopp |
4bc214 |
! #endif
|
|
Karsten Hopp |
4bc214 |
! )))
|
|
Karsten Hopp |
4bc214 |
set_option_default(i, opt_flags, p_cp);
|
|
Karsten Hopp |
4bc214 |
|
|
Karsten Hopp |
4bc214 |
#ifdef FEAT_WINDOWS
|
|
Karsten Hopp |
4bc214 |
*** ../vim-7.4.837/src/version.c 2015-08-25 19:49:46.724725068 +0200
|
|
Karsten Hopp |
4bc214 |
--- src/version.c 2015-08-25 21:26:30.040783229 +0200
|
|
Karsten Hopp |
4bc214 |
***************
|
|
Karsten Hopp |
4bc214 |
*** 743,744 ****
|
|
Karsten Hopp |
4bc214 |
--- 743,746 ----
|
|
Karsten Hopp |
4bc214 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
4bc214 |
+ /**/
|
|
Karsten Hopp |
4bc214 |
+ 838,
|
|
Karsten Hopp |
4bc214 |
/**/
|
|
Karsten Hopp |
4bc214 |
|
|
Karsten Hopp |
4bc214 |
--
|
|
Karsten Hopp |
4bc214 |
It is illegal to rob a bank and then shoot at the bank teller with a water
|
|
Karsten Hopp |
4bc214 |
pistol.
|
|
Karsten Hopp |
4bc214 |
[real standing law in Louisana, United States of America]
|
|
Karsten Hopp |
4bc214 |
|
|
Karsten Hopp |
4bc214 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
4bc214 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
4bc214 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
4bc214 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|