Skip to content

Commit 0796c06

Browse files
committed
patch 7.4.918
Problem: A digit in an option name has problems. Solution: Rename 'python3dll' to 'pythonthreedll'.
1 parent 1be2ed6 commit 0796c06

4 files changed

Lines changed: 6 additions & 4 deletions

File tree

runtime/doc/options.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5698,8 +5698,8 @@ A jump table for the options with a short description can be found at |Q_op|.
56985698
Insert mode completion. When zero as much space as available is used.
56995699
|ins-completion-menu|.
57005700

5701-
*'python3dll'*
5702-
'python3dll' string (default empty)
5701+
*'pythonthreedll'*
5702+
'pythonthreedll' string (default empty)
57035703
global
57045704
{not in Vi} {only for Unix}
57055705
{only available when compiled with the |+python3/dyn|

src/option.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2130,7 +2130,7 @@ static struct vimoption
21302130
#endif
21312131
{(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
21322132
#if defined(DYNAMIC_PYTHON3) && !defined(WIN3264)
2133-
{"python3dll", NULL, P_STRING|P_VI_DEF|P_SECURE,
2133+
{"pythonthreedll", NULL, P_STRING|P_VI_DEF|P_SECURE,
21342134
(char_u *)&p_py3dll, PV_NONE,
21352135
{(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
21362136
#endif

src/option.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,7 @@ EXTERN char_u *p_cdpath; /* 'cdpath' */
689689
EXTERN char_u *p_perldll; /* 'perldll' */
690690
#endif
691691
#if defined(DYNAMIC_PYTHON3) && !defined(WIN3264)
692-
EXTERN char_u *p_py3dll; /* 'python3dll' */
692+
EXTERN char_u *p_py3dll; /* 'pythonthreedll' */
693693
#endif
694694
#if defined(DYNAMIC_PYTHON) && !defined(WIN3264)
695695
EXTERN char_u *p_pydll; /* 'pythondll' */

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -741,6 +741,8 @@ static char *(features[]) =
741741

742742
static int included_patches[] =
743743
{ /* Add new patch number below this line */
744+
/**/
745+
918,
744746
/**/
745747
917,
746748
/**/

0 commit comments

Comments
 (0)