summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2015-11-10 19:41:37 +0100
committerBram Moolenaar <Bram@vim.org>2015-11-10 19:41:37 +0100
commit0796c0625fa4b9eb2f47fe8c976b78523924e1fb (patch)
treee4a3514674b2a5ec83a7ef91f517f88576a336a5
parent1be2ed6c11671eabefa0fc8600fd2af6cd3963e8 (diff)
patch 7.4.918v7.4.918
Problem: A digit in an option name has problems. Solution: Rename 'python3dll' to 'pythonthreedll'.
-rw-r--r--runtime/doc/options.txt4
-rw-r--r--src/option.c2
-rw-r--r--src/option.h2
-rw-r--r--src/version.c2
4 files changed, 6 insertions, 4 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index f0e4f58c1f..c987545eae 100644
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -5698,8 +5698,8 @@ A jump table for the options with a short description can be found at |Q_op|.
Insert mode completion. When zero as much space as available is used.
|ins-completion-menu|.
- *'python3dll'*
-'python3dll' string (default empty)
+ *'pythonthreedll'*
+'pythonthreedll' string (default empty)
global
{not in Vi} {only for Unix}
{only available when compiled with the |+python3/dyn|
diff --git a/src/option.c b/src/option.c
index bc44cb2d4b..6f9c5f5c2a 100644
--- a/src/option.c
+++ b/src/option.c
@@ -2130,7 +2130,7 @@ static struct vimoption
#endif
{(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
#if defined(DYNAMIC_PYTHON3) && !defined(WIN3264)
- {"python3dll", NULL, P_STRING|P_VI_DEF|P_SECURE,
+ {"pythonthreedll", NULL, P_STRING|P_VI_DEF|P_SECURE,
(char_u *)&p_py3dll, PV_NONE,
{(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
#endif
diff --git a/src/option.h b/src/option.h
index 739fd67bbe..f87283687a 100644
--- a/src/option.h
+++ b/src/option.h
@@ -689,7 +689,7 @@ EXTERN char_u *p_cdpath; /* 'cdpath' */
EXTERN char_u *p_perldll; /* 'perldll' */
#endif
#if defined(DYNAMIC_PYTHON3) && !defined(WIN3264)
-EXTERN char_u *p_py3dll; /* 'python3dll' */
+EXTERN char_u *p_py3dll; /* 'pythonthreedll' */
#endif
#if defined(DYNAMIC_PYTHON) && !defined(WIN3264)
EXTERN char_u *p_pydll; /* 'pythondll' */
diff --git a/src/version.c b/src/version.c
index 0255d52011..eef83bdc38 100644
--- a/src/version.c
+++ b/src/version.c
@@ -742,6 +742,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 918,
+/**/
917,
/**/
916,