25911: see if we can work around multibyte problems in file system

This commit is contained in:
Peter Stephenson 2008-10-18 16:03:17 +00:00
parent 802cdd4f5e
commit 96a1f68875
2 changed files with 11 additions and 9 deletions

View file

@ -1,3 +1,8 @@
2008-10-18 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 25911: Test/D07multibyte.ztst: see if we can work around file
system idiosyncracies.
2008-10-18 Clint Adams <clint@zsh.org>
* 25910: Src/builtin.c: avoid dangling file handle in bin_print.

View file

@ -396,13 +396,10 @@
>OK
>OK
mkdir glob
mkdir glob/'()Ą' glob/'()Ā'
mkdir glob/'()Ą'/foo glob/'()Ā'/bar
tmp1=('glob/\(\)Ą/*')
print $~tmp1
tmp1=('glob/\(\)Ā/*')
print $~tmp1
tmp1='glob/\(\)Ą/*'
[[ glob/'()Ą'/foo == $~tmp1 ]] && print "Matched against $tmp1"
tmp1='glob/\(\)Ā/*'
[[ glob/'()Ā'/bar == $~tmp1 ]] && print "Matched against $tmp1"
0:Backslashes and metafied characters in patterns
>glob/()Ą/foo
>glob/()Ā/bar
>Matched against glob/()Ą/*
>Matched against glob/()Ā/*