1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-13 23:31:08 +02:00

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> 2008-10-18 Clint Adams <clint@zsh.org>
* 25910: Src/builtin.c: avoid dangling file handle in bin_print. * 25910: Src/builtin.c: avoid dangling file handle in bin_print.

View file

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