Skip to content

Commit d4ece23

Browse files
committed
patch 7.4.919
Problem: The dll options are not in the options window. Solution: Add the dll options. And other fixes.
1 parent 0796c06 commit d4ece23

2 files changed

Lines changed: 19 additions & 1 deletion

File tree

runtime/optwin.vim

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
" These commands create the option window.
22
"
33
" Maintainer: Bram Moolenaar <[email protected]>
4-
" Last Change: 2015 Jul 22
4+
" Last Change: 2015 Nov 10
55

66
" If there already is an option window, jump to that one.
77
if bufwinnr("option-window") > 0
@@ -1307,6 +1307,22 @@ if has("mzscheme")
13071307
call append("$", "mzquantum\tinterval in milliseconds between polls for MzScheme threads")
13081308
call append("$", " \tset mzq=" . &mzq)
13091309
endif
1310+
if exists("&luadll")
1311+
call append("$", "luadll\tname of the Lua dynamic library")
1312+
call <SID>OptionG("luadll", &luadll)
1313+
endif
1314+
if exists("&perldll")
1315+
call append("$", "perldll\tname of the Perl dynamic library")
1316+
call <SID>OptionG("perldll", &perldll)
1317+
endif
1318+
if exists("&pythondll")
1319+
call append("$", "pythondll\tname of the Python 2 dynamic library")
1320+
call <SID>OptionG("pythondll", &pythondll)
1321+
endif
1322+
if exists("&pythonthreedll")
1323+
call append("$", "pythonthreedll\tname of the Python 3 dynamic library")
1324+
call <SID>OptionG("pythonthreedll", &pythonthreedll)
1325+
endif
13101326

13111327
set cpo&vim
13121328

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+
919,
744746
/**/
745747
918,
746748
/**/

0 commit comments

Comments
 (0)