# HG changeset patch # User Christian Brabandt # Date 1447185604 -3600 # Node ID 4e86d5700260686ed8640ab95322c4b260f07a31 # Parent edbf08240c76d0b3a0d8da5855964e1344946493 commit https://github.com/vim/vim/commit/a93f975e8b39d7cfc8145dbe181cc4e5e4ec0bdf Author: Bram Moolenaar Date: Tue Nov 10 20:45:09 2015 +0100 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 --- 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 --- 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 */ /**/ + 920, +/**/ 919, /**/ 918,