changeset 11077:746c1e1be45f v8.0.0427

patch 8.0.0427: 'makeencoding' missing from the options window commit https://github.com/vim/vim/commit/ad4187e6fc9c8e1083a172852d958a70a689a75c Author: Bram Moolenaar <Bram@vim.org> Date: Mon Mar 6 21:45:20 2017 +0100 patch 8.0.0427: 'makeencoding' missing from the options window Problem: 'makeencoding' missing from the options window. Solution: Add the entry.
author Christian Brabandt <cb@256bit.org>
date Mon, 06 Mar 2017 22:00:05 +0100
parents 855f6d6fa89b
children b3f6526848a9
files runtime/optwin.vim src/version.c
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/runtime/optwin.vim
+++ b/runtime/optwin.vim
@@ -1,7 +1,7 @@
 " These commands create the option window.
 "
 " Maintainer:	Bram Moolenaar <Bram@vim.org>
-" Last Change:	2017 Jan 28
+" Last Change:	2017 Mar 06
 
 " If there already is an option window, jump to that one.
 if bufwinnr("option-window") > 0
@@ -1131,6 +1131,9 @@ if has("quickfix")
   call <SID>OptionG("gp", &gp)
   call append("$", "grepformat\tlist of formats for output of 'grepprg'")
   call <SID>OptionG("gfm", &gfm)
+  call append("$", "makeencoding\tencoding of the \":make\" and \":grep\" output")
+  call append("$", "\t(global or local to buffer)")
+  call <SID>OptionG("menc", &menc)
 endif
 
 
--- a/src/version.c
+++ b/src/version.c
@@ -765,6 +765,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    427,
+/**/
     426,
 /**/
     425,