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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5104
93cccad6a26b updated for version 7.3.1295
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
1 Test whether glob()/globpath() return correct results with certain escaped
93cccad6a26b updated for version 7.3.1295
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
2 characters.
93cccad6a26b updated for version 7.3.1295
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
3
93cccad6a26b updated for version 7.3.1295
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
4 STARTTEST
93cccad6a26b updated for version 7.3.1295
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
5 :so small.vim
93cccad6a26b updated for version 7.3.1295
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
6 :set shell=doesnotexist
93cccad6a26b updated for version 7.3.1295
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
7 :e test.out
93cccad6a26b updated for version 7.3.1295
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
8 :put =glob('Xxx\{')
93cccad6a26b updated for version 7.3.1295
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
9 :put =glob('Xxx\$')
93cccad6a26b updated for version 7.3.1295
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
10 :w! Xxx{
93cccad6a26b updated for version 7.3.1295
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
11 :w! Xxx\$
93cccad6a26b updated for version 7.3.1295
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
12 :put =glob('Xxx\{')
93cccad6a26b updated for version 7.3.1295
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
13 :put =glob('Xxx\$')
93cccad6a26b updated for version 7.3.1295
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
14 :w
93cccad6a26b updated for version 7.3.1295
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
15 :qa!
93cccad6a26b updated for version 7.3.1295
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
16 ENDTEST
93cccad6a26b updated for version 7.3.1295
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
17