Mercurial > vim
annotate src/testdir/test97.in @ 10449:222b1432814e v8.0.0118
commit https://github.com/vim/vim/commit/5162822914372fc916a93f85848c0c82209e7cec
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Dec 1 23:03:28 2016 +0100
patch 8.0.0118
Problem: "make proto" adds extra function prototype.
Solution: Add #ifdef.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 01 Dec 2016 23:15:04 +0100 |
parents | e5dddd764fef |
children |
rev | line source |
---|---|
5104 | 1 Test whether glob()/globpath() return correct results with certain escaped |
2 characters. | |
3 | |
4 STARTTEST | |
5 :so small.vim | |
5879 | 6 :" make sure glob() doesn't use the shell |
5104 | 7 :set shell=doesnotexist |
5879 | 8 :" consistent sorting of file names |
9 :set nofileignorecase | |
10270
e5dddd764fef
commit https://github.com/vim/vim/commit/3e8474dd50f64c998bb665ce852f584a58dede6b
Christian Brabandt <cb@256bit.org>
parents:
5879
diff
changeset
|
10 :e! test.out |
5873 | 11 :$put =glob('Xxx\{') |
12 :$put =glob('Xxx\$') | |
5104 | 13 :w! Xxx{ |
14 :w! Xxx\$ | |
5873 | 15 :$put =glob('Xxx\{') |
16 :$put =glob('Xxx\$') | |
17 :" | |
18 :$put =string(globpath('sautest/autoload', '*.vim')) | |
19 :$put =string(globpath('sautest/autoload', '*.vim', 0, 1)) | |
5104 | 20 :w |
21 :qa! | |
22 ENDTEST | |
23 |