annotate src/testdir/test102.in @ 6047:ff3816167b73
v7.4.363
updated for version 7.4.363
Problem: In Windows console typing 0xCE does not work.
Solution: Convert 0xCE to K_NUL 3. (Nobuhiro Takasaki et al.)
author |
Bram Moolenaar <bram@vim.org> |
date |
Wed, 09 Jul 2014 20:51:07 +0200 |
parents |
31217cc48e7d |
children |
6f88e2dafbf6 |
rev |
line source |
5481
|
1 Test if fnameescape is correct for special chars like !
|
|
2
|
|
3 STARTTEST
|
|
4 :%d
|
|
5 :let fname = 'Xspa ce'
|
|
6 :try | exe "w! " . fnameescape(fname) | put='Space' | endtry
|
|
7 :let fname = 'Xemark!'
|
|
8 :try | exe "w! " . fnameescape(fname) | put='ExclamationMark' | endtry
|
|
9 :w! test.out
|
|
10 :qa!
|
|
11 ENDTEST
|
|
12
|