vim-patch:7.4.2086

Problem:    Using the system default encoding makes tests unpredictable.
Solution:   Always use utf-8 or latin1 in the new style tests.  Remove setting
            encoding and scriptencoding where it is not needed.

ac105ed3c4
This commit is contained in:
lonerover 2017-01-04 12:50:50 +08:00 committed by James McCoy
parent 6f4a963e0e
commit bec7e47938
No known key found for this signature in database
GPG Key ID: DFE691AE331BA3DB

View File

@ -4,9 +4,6 @@ if !has("digraphs") || !has("multi_byte")
finish finish
endif endif
set enc=utf-8
scriptencoding utf-8
func! Put_Dig(chars) func! Put_Dig(chars)
exe "norm! o\<c-k>".a:chars exe "norm! o\<c-k>".a:chars
endfu endfu