Skip to content

Commit ad4187e

Browse files
committed
patch 8.0.0427: 'makeencoding' missing from the options window
Problem: 'makeencoding' missing from the options window. Solution: Add the entry.
1 parent 300af82 commit ad4187e

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

runtime/optwin.vim

Lines changed: 4 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 Jan 28
4+
" Last Change: 2017 Mar 06
55

66
" If there already is an option window, jump to that one.
77
if bufwinnr("option-window") > 0
@@ -1131,6 +1131,9 @@ if has("quickfix")
11311131
call <SID>OptionG("gp", &gp)
11321132
call append("$", "grepformat\tlist of formats for output of 'grepprg'")
11331133
call <SID>OptionG("gfm", &gfm)
1134+
call append("$", "makeencoding\tencoding of the \":make\" and \":grep\" output")
1135+
call append("$", "\t(global or local to buffer)")
1136+
call <SID>OptionG("menc", &menc)
11341137
endif
11351138

11361139

src/version.c

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

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
427,
767769
/**/
768770
426,
769771
/**/

0 commit comments

Comments
 (0)