Hi Bram, 2014/10/22 Wed 1:17:43 UTC+9 Bram Moolenaar wrote: > > 2. test_mapping fails: > > https://ci.appveyor.com/project/k-takata/vim-ci/build/66#L1227 (Line 1231) > > > 1231 Binary files test.out and test_mapping.ok differ > > > > I haven't checked why this test fails. > > Perhaps an encoding problem?
Ah, you are right. The following patch fixes it: --- a/src/testdir/test_mapping.in +++ b/src/testdir/test_mapping.in @@ -3,6 +3,7 @@ Test for mappings and abbreviations STARTTEST :so small.vim :so mbyte.vim +:set encoding=utf-8 : " abbreviations with р (0x80) should work :inoreab чкпр vim GAчкпр Regards, Ken Takata -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
