]> granicus.if.org Git - vim/commitdiff
patch 8.0.0971: 'winptydll' missing from :options v8.0.0971
authorBram Moolenaar <Bram@vim.org>
Sat, 19 Aug 2017 21:18:02 +0000 (23:18 +0200)
committerBram Moolenaar <Bram@vim.org>
Sat, 19 Aug 2017 21:18:02 +0000 (23:18 +0200)
Problem:    'winptydll' missing from :options.
Solution:   Add the entry.

runtime/optwin.vim
src/version.c

index 52f987e8849467c01195ae3ea08c8f6fb4a4a548..c7753639c25cb23a40f4a6653af7df8a4b66aff9 100644 (file)
@@ -1,7 +1,7 @@
 " These commands create the option window.
 "
 " Maintainer:  Bram Moolenaar <Bram@vim.org>
-" 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 <SID>OptionL("tk")
+  if exists("&winptydll")
+    call append("$", "winptydll\tname of the winpty dynamic library")
+    call <SID>OptionG("winptydll", &winptydll)
+  endif
 endif
 
 
index d820595b5064c46f8e442cab8c35bd66e8ac2831..9f9b8ab4e51e4f6ebd978a2f8b3e6730c5509190 100644 (file)
@@ -769,6 +769,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    971,
 /**/
     970,
 /**/