Karsten Hopp 8494b4
To: vim_dev@googlegroups.com
Karsten Hopp 8494b4
Subject: Patch 7.4.918
Karsten Hopp 8494b4
Fcc: outbox
Karsten Hopp 8494b4
From: Bram Moolenaar <Bram@moolenaar.net>
Karsten Hopp 8494b4
Mime-Version: 1.0
Karsten Hopp 8494b4
Content-Type: text/plain; charset=UTF-8
Karsten Hopp 8494b4
Content-Transfer-Encoding: 8bit
Karsten Hopp 8494b4
------------
Karsten Hopp 8494b4
Karsten Hopp 8494b4
Patch 7.4.918
Karsten Hopp 8494b4
Problem:    A digit in an option name has problems.
Karsten Hopp 8494b4
Solution:   Rename 'python3dll' to 'pythonthreedll'.
Karsten Hopp 8494b4
Files:      src/option.c, src/option.h, runtime/doc/options.txt
Karsten Hopp 8494b4
Karsten Hopp 8494b4
Karsten Hopp 8494b4
*** ../vim-7.4.917/src/option.c	2015-11-10 17:50:20.713430521 +0100
Karsten Hopp 8494b4
--- src/option.c	2015-11-10 19:27:44.075652319 +0100
Karsten Hopp 8494b4
***************
Karsten Hopp 8494b4
*** 2130,2136 ****
Karsten Hopp 8494b4
  #endif
Karsten Hopp 8494b4
  			    {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
Karsten Hopp 8494b4
  #if defined(DYNAMIC_PYTHON3) && !defined(WIN3264)
Karsten Hopp 8494b4
!     {"python3dll",  NULL,   P_STRING|P_VI_DEF|P_SECURE,
Karsten Hopp 8494b4
  			    (char_u *)&p_py3dll, PV_NONE,
Karsten Hopp 8494b4
  			    {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
Karsten Hopp 8494b4
  #endif
Karsten Hopp 8494b4
--- 2130,2136 ----
Karsten Hopp 8494b4
  #endif
Karsten Hopp 8494b4
  			    {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
Karsten Hopp 8494b4
  #if defined(DYNAMIC_PYTHON3) && !defined(WIN3264)
Karsten Hopp 8494b4
!     {"pythonthreedll",  NULL,   P_STRING|P_VI_DEF|P_SECURE,
Karsten Hopp 8494b4
  			    (char_u *)&p_py3dll, PV_NONE,
Karsten Hopp 8494b4
  			    {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
Karsten Hopp 8494b4
  #endif
Karsten Hopp 8494b4
*** ../vim-7.4.917/src/option.h	2015-11-02 15:27:03.442325459 +0100
Karsten Hopp 8494b4
--- src/option.h	2015-11-10 19:27:58.923505522 +0100
Karsten Hopp 8494b4
***************
Karsten Hopp 8494b4
*** 689,695 ****
Karsten Hopp 8494b4
  EXTERN char_u	*p_perldll;	/* 'perldll' */
Karsten Hopp 8494b4
  #endif
Karsten Hopp 8494b4
  #if defined(DYNAMIC_PYTHON3) && !defined(WIN3264)
Karsten Hopp 8494b4
! EXTERN char_u	*p_py3dll;	/* 'python3dll' */
Karsten Hopp 8494b4
  #endif
Karsten Hopp 8494b4
  #if defined(DYNAMIC_PYTHON) && !defined(WIN3264)
Karsten Hopp 8494b4
  EXTERN char_u	*p_pydll;	/* 'pythondll' */
Karsten Hopp 8494b4
--- 689,695 ----
Karsten Hopp 8494b4
  EXTERN char_u	*p_perldll;	/* 'perldll' */
Karsten Hopp 8494b4
  #endif
Karsten Hopp 8494b4
  #if defined(DYNAMIC_PYTHON3) && !defined(WIN3264)
Karsten Hopp 8494b4
! EXTERN char_u	*p_py3dll;	/* 'pythonthreedll' */
Karsten Hopp 8494b4
  #endif
Karsten Hopp 8494b4
  #if defined(DYNAMIC_PYTHON) && !defined(WIN3264)
Karsten Hopp 8494b4
  EXTERN char_u	*p_pydll;	/* 'pythondll' */
Karsten Hopp 8494b4
*** ../vim-7.4.917/runtime/doc/options.txt	2015-11-02 15:27:03.434325554 +0100
Karsten Hopp 8494b4
--- runtime/doc/options.txt	2015-11-10 19:27:08.200007003 +0100
Karsten Hopp 8494b4
***************
Karsten Hopp 8494b4
*** 5680,5687 ****
Karsten Hopp 8494b4
  	Insert mode completion.  When zero as much space as available is used.
Karsten Hopp 8494b4
  	|ins-completion-menu|.
Karsten Hopp 8494b4
  
Karsten Hopp 8494b4
! 						*'python3dll'*
Karsten Hopp 8494b4
! 'python3dll' 		string	(default empty)
Karsten Hopp 8494b4
  			global
Karsten Hopp 8494b4
  			{not in Vi} {only for Unix}
Karsten Hopp 8494b4
  			{only available when compiled with the |+python3/dyn|
Karsten Hopp 8494b4
--- 5698,5705 ----
Karsten Hopp 8494b4
  	Insert mode completion.  When zero as much space as available is used.
Karsten Hopp 8494b4
  	|ins-completion-menu|.
Karsten Hopp 8494b4
  
Karsten Hopp 8494b4
! 						*'pythonthreedll'*
Karsten Hopp 8494b4
! 'pythonthreedll'	string	(default empty)
Karsten Hopp 8494b4
  			global
Karsten Hopp 8494b4
  			{not in Vi} {only for Unix}
Karsten Hopp 8494b4
  			{only available when compiled with the |+python3/dyn|
Karsten Hopp 8494b4
*** ../vim-7.4.917/src/version.c	2015-11-10 19:11:55.173027459 +0100
Karsten Hopp 8494b4
--- src/version.c	2015-11-10 19:28:55.926940874 +0100
Karsten Hopp 8494b4
***************
Karsten Hopp 8494b4
*** 743,744 ****
Karsten Hopp 8494b4
--- 743,746 ----
Karsten Hopp 8494b4
  {   /* Add new patch number below this line */
Karsten Hopp 8494b4
+ /**/
Karsten Hopp 8494b4
+     918,
Karsten Hopp 8494b4
  /**/
Karsten Hopp 8494b4
Karsten Hopp 8494b4
-- 
Karsten Hopp 8494b4
I AM THANKFUL...
Karsten Hopp 8494b4
...for the clothes that fit a little too snug because it
Karsten Hopp 8494b4
means I have more than enough to eat.
Karsten Hopp 8494b4
Karsten Hopp 8494b4
 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
Karsten Hopp 8494b4
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
Karsten Hopp 8494b4
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
Karsten Hopp 8494b4
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///