view src/testdir/test97.in @ 5376:4dfba3df303c v7.4.039

updated for version 7.4.039 Problem: MS-Windows: MSCV10 and earlier can't handle symlinks to a directory properly. Solution: Add stat_symlink_aware() and wstat_symlink_aware(). (Ken Takata)
author Bram Moolenaar <bram@vim.org>
date Wed, 25 Sep 2013 19:13:38 +0200
parents 93cccad6a26b
children 8e9db1f27a00
line wrap: on
line source

Test whether glob()/globpath() return correct results with certain escaped
characters.

STARTTEST
:so small.vim
:set shell=doesnotexist
:e test.out
:put =glob('Xxx\{')
:put =glob('Xxx\$')
:w! Xxx{
:w! Xxx\$
:put =glob('Xxx\{')
:put =glob('Xxx\$')
:w
:qa!
ENDTEST