1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-05-20 06:56:05 +02:00

unposted: _stdbuf: Fix mismatch between the long options on the one hand, and the short options and descriptions on the other hand.

This commit is contained in:
Daniel Shahaf 2019-12-23 08:25:44 +00:00
parent 5c5ac5efdb
commit 3834c423ab
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2019-12-23 Daniel Shahaf <danielsh@apache.org>
* unposted: Completion/Unix/Command/_stdbuf: Fix mismatch
between the long options on the one hand, and the short options
and descriptions on the other hand.
2019-12-22 Daniel Shahaf <danielsh@apache.org>
* unposted: Test/B01cd.ztst, Util/ztst.vim: Fix broken build:

View File

@ -4,7 +4,7 @@ local -a short long buf args
local i opt gnu=0
short=( -e -i -o )
long=( --error --output --input )
long=( --error --input --output )
buf=( err in out )
opt='[set initial buffering for std${buf[i]}]:mode or size:((0\:unbuffered L\:line\ buffered'