1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-05 23:11:11 +02:00

add test for 21352

This commit is contained in:
Oliver Kiddle 2005-06-17 08:38:51 +00:00
parent 14bfaab3ef
commit 7ba32bbc26
2 changed files with 15 additions and 0 deletions

View file

@ -1,3 +1,10 @@
2005-06-17 Oliver Kiddle <opk@zsh.org>
* 21352: Harald van Dijk: Src/builtin.c: handle null after % in
printf format specifier
* unposted: Test/B03print.ztst: add test for 21352
2005-06-16 Clint Adams <clint@zsh.org>
* 21351: Completion/X/Command/_vnc: complete for xvnc4viewer and

View file

@ -203,3 +203,11 @@
printf -- '%s\n' str
0:initial `--' ignored to satisfy POSIX
>str
printf '%'
1:nothing after % in format specifier
?(eval):printf:1: %: invalid directive
printf $'%\0'
1:explicit null after % in format specifier
?(eval):printf:1: %: invalid directive