Mercurial > vim
view src/testdir/test97.in @ 7683:ec434c82f72c v7.4.1140
commit https://github.com/vim/vim/commit/e266d6d664d6d743c79797af400b2c01ec746216
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Jan 19 20:51:32 2016 +0100
patch 7.4.1140
Problem: Recognizing <sid> does not work when the language is Turkish.
(Christian Brabandt)
Solution: Use MB_STNICMP() instead of STNICMP().
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 19 Jan 2016 21:00:07 +0100 |
parents | 6d0a1132dd71 |
children | e5dddd764fef |
line wrap: on
line source
Test whether glob()/globpath() return correct results with certain escaped characters. STARTTEST :so small.vim :" make sure glob() doesn't use the shell :set shell=doesnotexist :" consistent sorting of file names :set nofileignorecase :e test.out :$put =glob('Xxx\{') :$put =glob('Xxx\$') :w! Xxx{ :w! Xxx\$ :$put =glob('Xxx\{') :$put =glob('Xxx\$') :" :$put =string(globpath('sautest/autoload', '*.vim')) :$put =string(globpath('sautest/autoload', '*.vim', 0, 1)) :w :qa! ENDTEST