Skip to content

Commit 0aed9a2

Browse files
committed
patch 8.0.0971: 'winptydll' missing from :options
Problem: 'winptydll' missing from :options. Solution: Add the entry.
1 parent d6a7b3e commit 0aed9a2

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

runtime/optwin.vim

Lines changed: 5 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: 2017 Aug 11
4+
" Last Change: 2017 Aug 19
55

66
" If there already is an option window, jump to that one.
77
let buf = bufnr('option-window')
@@ -510,6 +510,10 @@ if has("terminal")
510510
call append("$", "termkey\tkey that precedes Vim commands in a terminal window")
511511
call append("$", "\t(local to window)")
512512
call <SID>OptionL("tk")
513+
if exists("&winptydll")
514+
call append("$", "winptydll\tname of the winpty dynamic library")
515+
call <SID>OptionG("winptydll", &winptydll)
516+
endif
513517
endif
514518

515519

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -769,6 +769,8 @@ static char *(features[]) =
769769

770770
static int included_patches[] =
771771
{ /* Add new patch number below this line */
772+
/**/
773+
971,
772774
/**/
773775
970,
774776
/**/

0 commit comments

Comments
 (0)