From a93f975e8b39d7cfc8145dbe181cc4e5e4ec0bdf Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 10 Nov 2015 20:45:09 +0100 Subject: [PATCH] patch 7.4.920 Problem: The rubydll option is not in the options window. Solution: Add the rubydll option. --- runtime/optwin.vim | 4 ++++ src/version.c | 2 ++ 2 files changed, 6 insertions(+) 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, /**/ -- 2.50.1