1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-02 08:51:18 +02:00

correct typo from recent change

This commit is contained in:
Oliver Kiddle 2003-02-27 09:29:24 +00:00
parent e4443a2d4f
commit 4b09b20be2
3 changed files with 7 additions and 3 deletions

@ -1,6 +1,10 @@
2003-02-27 Oliver Kiddle <opk@zsh.org>
* unposted: Completion/Unix/Command/_tar: correct my typo
2003-02-27 Doug Kearns <djkea2@mugca.its.monash.edu.au>
* 18305: Completion/Zsh/Command/_python: new completion for
* 18305: Completion/Unix/Command/_python: new completion for
python.
2003-02-27 Geoff Wing <gcw@zsh.org>

@ -19,5 +19,5 @@ _user_admin _rsync _arping _spamassassin _mtools _ifconfig
_fsh _chkconfig _cdcd _irssi _mysqldiff _sccs
_netcat _larch _texinfo _figlet _elinks _tidy
_global _global_tags _ant _lsof _mt _xmlsoft
_p4 _python
_perforce _python
'

@ -146,7 +146,7 @@ elif [[ ( "$_tar_cmd" = *[xt]* || -n $del ) && -n "$tf" ]]; then
_wanted files expl 'file from archive' _multi_parts / _tar_cache_list
elif (( CURRENT == 2 )); then
_values -s '' 'tar function' \
'(c t u x)A[append to and archive]' \
'(c t u x)A[append to an archive]' \
'(A t u x)c[create a new archive]' \
'(A c u x)t[list archive contents]' \
'(A c t x)u[update archive]' \