# HG changeset patch # User Christian Brabandt # Date 1447182005 -3600 # Node ID 1931b890e7d78d74ecf961abd8eba0dda5e8a979 # Parent 170c55b88b4ca4b431dc895205edb46d7799de1b commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029 Author: Bram Moolenaar Date: Tue Nov 10 19:48:14 2015 +0100 patch 7.4.919 Problem: The dll options are not in the options window. Solution: Add the dll options. And other fixes. diff --git a/runtime/optwin.vim b/runtime/optwin.vim --- a/runtime/optwin.vim +++ b/runtime/optwin.vim @@ -1,7 +1,7 @@ " These commands create the option window. " " Maintainer: Bram Moolenaar -" Last Change: 2015 Jul 22 +" Last Change: 2015 Nov 10 " If there already is an option window, jump to that one. if bufwinnr("option-window") > 0 @@ -1307,6 +1307,22 @@ if has("mzscheme") call append("$", "mzquantum\tinterval in milliseconds between polls for MzScheme threads") call append("$", " \tset mzq=" . &mzq) endif +if exists("&luadll") + call append("$", "luadll\tname of the Lua dynamic library") + call OptionG("luadll", &luadll) +endif +if exists("&perldll") + call append("$", "perldll\tname of the Perl dynamic library") + call OptionG("perldll", &perldll) +endif +if exists("&pythondll") + call append("$", "pythondll\tname of the Python 2 dynamic library") + call OptionG("pythondll", &pythondll) +endif +if exists("&pythonthreedll") + call append("$", "pythonthreedll\tname of the Python 3 dynamic library") + call OptionG("pythonthreedll", &pythonthreedll) +endif set cpo&vim diff --git a/src/version.c b/src/version.c --- 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 */ /**/ + 919, +/**/ 918, /**/ 917,