From 0aed9a2e2eb93c43b21a5f781bf07c8a53dbd830 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 19 Aug 2017 23:18:02 +0200 Subject: patch 8.0.0971: 'winptydll' missing from :options Problem: 'winptydll' missing from :options. Solution: Add the entry. --- runtime/optwin.vim | 6 +++++- src/version.c | 2 ++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/runtime/optwin.vim b/runtime/optwin.vim index 52f987e88..c7753639c 100644 --- a/runtime/optwin.vim +++ b/runtime/optwin.vim @@ -1,7 +1,7 @@ " These commands create the option window. " " Maintainer: Bram Moolenaar -" Last Change: 2017 Aug 11 +" Last Change: 2017 Aug 19 " If there already is an option window, jump to that one. let buf = bufnr('option-window') @@ -510,6 +510,10 @@ if has("terminal") call append("$", "termkey\tkey that precedes Vim commands in a terminal window") call append("$", "\t(local to window)") call OptionL("tk") + if exists("&winptydll") + call append("$", "winptydll\tname of the winpty dynamic library") + call OptionG("winptydll", &winptydll) + endif endif diff --git a/src/version.c b/src/version.c index d820595b5..9f9b8ab4e 100644 --- a/src/version.c +++ b/src/version.c @@ -769,6 +769,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 971, /**/ 970, /**/ -- cgit v1.2.1