From: Bram Moolenaar Date: Tue, 10 Nov 2015 19:45:09 +0000 (+0100) Subject: patch 7.4.920 X-Git-Tag: v7.4.920 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a93f975e8b39d7cfc8145dbe181cc4e5e4ec0bdf;p=vim patch 7.4.920 Problem: The rubydll option is not in the options window. Solution: Add the rubydll option. --- diff --git a/runtime/optwin.vim b/runtime/optwin.vim index d1e53367b..048b1ad7e 100644 --- a/runtime/optwin.vim +++ b/runtime/optwin.vim @@ -1323,6 +1323,10 @@ if exists("&pythonthreedll") call append("$", "pythonthreedll\tname of the Python 3 dynamic library") call OptionG("pythonthreedll", &pythonthreedll) endif +if exists("&rubydll") + call append("$", "rubydll\tname of the Ruby dynamic library") + call OptionG("rubydll", &rubydll) +endif set cpo&vim diff --git a/src/version.c b/src/version.c index a52dca982..eb418a705 100644 --- a/src/version.c +++ b/src/version.c @@ -741,6 +741,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 920, /**/ 919, /**/