mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 8.1.0942: options window still checks for the multi_byte feature
Problem: Options window still checks for the multi_byte feature. Solution: Remove the unnecessary check. (Dominique Pelle, closes #3990)
This commit is contained in:
parent
4f97475d32
commit
76cbe811da
@ -685,13 +685,11 @@ if has("printer")
|
|||||||
call append("$", "printencoding\tencoding used to print the PostScript file for :hardcopy")
|
call append("$", "printencoding\tencoding used to print the PostScript file for :hardcopy")
|
||||||
call <SID>OptionG("penc", &penc)
|
call <SID>OptionG("penc", &penc)
|
||||||
endif
|
endif
|
||||||
if has("multi_byte")
|
|
||||||
call append("$", "printmbcharset\tthe CJK character set to be used for CJK output from :hardcopy")
|
call append("$", "printmbcharset\tthe CJK character set to be used for CJK output from :hardcopy")
|
||||||
call <SID>OptionG("pmbcs", &pmbcs)
|
call <SID>OptionG("pmbcs", &pmbcs)
|
||||||
call append("$", "printmbfont\tlist of font names to be used for CJK output from :hardcopy")
|
call append("$", "printmbfont\tlist of font names to be used for CJK output from :hardcopy")
|
||||||
call <SID>OptionG("pmbfn", &pmbfn)
|
call <SID>OptionG("pmbfn", &pmbfn)
|
||||||
endif
|
endif
|
||||||
endif
|
|
||||||
|
|
||||||
call <SID>Header("messages and info")
|
call <SID>Header("messages and info")
|
||||||
call append("$", "terse\tadd 's' flag in 'shortmess' (don't show search message)")
|
call append("$", "terse\tadd 's' flag in 'shortmess' (don't show search message)")
|
||||||
@ -996,11 +994,9 @@ call <SID>BinOptionL("eol")
|
|||||||
call append("$", "fixendofline\tfixes missing end-of-line at end of text file")
|
call append("$", "fixendofline\tfixes missing end-of-line at end of text file")
|
||||||
call append("$", "\t(local to buffer)")
|
call append("$", "\t(local to buffer)")
|
||||||
call <SID>BinOptionL("fixeol")
|
call <SID>BinOptionL("fixeol")
|
||||||
if has("multi_byte")
|
|
||||||
call append("$", "bomb\tprepend a Byte Order Mark to the file")
|
call append("$", "bomb\tprepend a Byte Order Mark to the file")
|
||||||
call append("$", "\t(local to buffer)")
|
call append("$", "\t(local to buffer)")
|
||||||
call <SID>BinOptionL("bomb")
|
call <SID>BinOptionL("bomb")
|
||||||
endif
|
|
||||||
call append("$", "fileformat\tend-of-line format: \"dos\", \"unix\" or \"mac\"")
|
call append("$", "fileformat\tend-of-line format: \"dos\", \"unix\" or \"mac\"")
|
||||||
call append("$", "\t(local to buffer)")
|
call append("$", "\t(local to buffer)")
|
||||||
call <SID>OptionL("ff")
|
call <SID>OptionL("ff")
|
||||||
@ -1252,7 +1248,6 @@ if has("xim")
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
if has("multi_byte")
|
|
||||||
call <SID>Header("multi-byte characters")
|
call <SID>Header("multi-byte characters")
|
||||||
call append("$", "encoding\tcharacter encoding used in Vim: \"latin1\", \"utf-8\"")
|
call append("$", "encoding\tcharacter encoding used in Vim: \"latin1\", \"utf-8\"")
|
||||||
call append("$", "\t\"euc-jp\", \"big5\", etc.")
|
call append("$", "\t\"euc-jp\", \"big5\", etc.")
|
||||||
@ -1278,7 +1273,6 @@ if has("multi_byte")
|
|||||||
call <SID>OptionG("ambw", &ambw)
|
call <SID>OptionG("ambw", &ambw)
|
||||||
call append("$", "emoji\temoji characters are full width")
|
call append("$", "emoji\temoji characters are full width")
|
||||||
call <SID>BinOptionG("emo", &emo)
|
call <SID>BinOptionG("emo", &emo)
|
||||||
endif
|
|
||||||
|
|
||||||
|
|
||||||
call <SID>Header("various")
|
call <SID>Header("various")
|
||||||
|
@ -779,6 +779,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
942,
|
||||||
/**/
|
/**/
|
||||||
941,
|
941,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user