From: Bram Moolenaar Date: Mon, 6 Mar 2017 20:45:20 +0000 (+0100) Subject: patch 8.0.0427: 'makeencoding' missing from the options window X-Git-Tag: v8.0.0427 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ad4187e6fc9c8e1083a172852d958a70a689a75c;p=vim patch 8.0.0427: 'makeencoding' missing from the options window Problem: 'makeencoding' missing from the options window. Solution: Add the entry. --- diff --git a/runtime/optwin.vim b/runtime/optwin.vim index 362cd3d88..2cbbd288b 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 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 OptionG("gp", &gp) call append("$", "grepformat\tlist of formats for output of 'grepprg'") call OptionG("gfm", &gfm) + call append("$", "makeencoding\tencoding of the \":make\" and \":grep\" output") + call append("$", "\t(global or local to buffer)") + call OptionG("menc", &menc) endif diff --git a/src/version.c b/src/version.c index 5aea071e9..962f5b8d1 100644 --- a/src/version.c +++ b/src/version.c @@ -764,6 +764,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 427, /**/ 426, /**/