annotate src/testdir/test97.in @ 5539:62c720661f81
v7.4.118
updated for version 7.4.118
Problem: It's possible that redrawing the status lines causes
win_redr_custom() to be called recursively.
Solution: Protect against recursiveness. (Yasuhiro Matsumoto)
author |
Bram Moolenaar <bram@vim.org> |
date |
Wed, 11 Dec 2013 15:52:01 +0100 |
parents |
93cccad6a26b |
children |
8e9db1f27a00 |
rev |
line source |
5104
|
1 Test whether glob()/globpath() return correct results with certain escaped
|
|
2 characters.
|
|
3
|
|
4 STARTTEST
|
|
5 :so small.vim
|
|
6 :set shell=doesnotexist
|
|
7 :e test.out
|
|
8 :put =glob('Xxx\{')
|
|
9 :put =glob('Xxx\$')
|
|
10 :w! Xxx{
|
|
11 :w! Xxx\$
|
|
12 :put =glob('Xxx\{')
|
|
13 :put =glob('Xxx\$')
|
|
14 :w
|
|
15 :qa!
|
|
16 ENDTEST
|
|
17
|