mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-10 12:40:58 +02:00
29722, 29706: fix two things in _mplayer.
This commit is contained in:
parent
af071465b1
commit
c0ec6c4238
2 changed files with 11 additions and 5 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2011-08-29 Mikael Magnusson <mikachu@gmail.com>
|
||||||
|
|
||||||
|
* 29722: Completion/X/Command/_mplayer: escape colon.
|
||||||
|
|
||||||
|
* 29706: Completion/X/Command/_mplayer: add missing ret=0.
|
||||||
|
|
||||||
2011-08-28 Peter Stephenson <p.w.stephenson@ntlworld.com>
|
2011-08-28 Peter Stephenson <p.w.stephenson@ntlworld.com>
|
||||||
|
|
||||||
* 29731: Src/builtin.c, Test/B04read.ztst: fix output from `read
|
* 29731: Src/builtin.c, Test/B04read.ztst: fix output from `read
|
||||||
|
@ -15338,5 +15344,5 @@
|
||||||
|
|
||||||
*****************************************************
|
*****************************************************
|
||||||
* This is used by the shell to define $ZSH_PATCHLEVEL
|
* This is used by the shell to define $ZSH_PATCHLEVEL
|
||||||
* $Revision: 1.5447 $
|
* $Revision: 1.5448 $
|
||||||
*****************************************************
|
*****************************************************
|
||||||
|
|
|
@ -77,7 +77,7 @@ _x_arguments -C -s \
|
||||||
'-sid[turn on DVD subtitles]:language id' \
|
'-sid[turn on DVD subtitles]:language id' \
|
||||||
'-speed[set playback speed rate]:playback speed rate' \
|
'-speed[set playback speed rate]:playback speed rate' \
|
||||||
'-srate[specify frequency of audio playback]:frequency (Hz)' \
|
'-srate[specify frequency of audio playback]:frequency (Hz)' \
|
||||||
'-ss[seek to given time position]:position (hh:mm\[\:ss\])' \
|
'-ss[seek to given time position]:position (hh\:mm\[\:ss\])' \
|
||||||
'-sstep[specify time between displayed frames]:time (seconds)' \
|
'-sstep[specify time between displayed frames]:time (seconds)' \
|
||||||
-ssf:mode -stop_xscreensaver \
|
-ssf:mode -stop_xscreensaver \
|
||||||
'-stereo:mode:((0\:stereo 1\:left\ channel 2\:right\ channel))' \
|
'-stereo:mode:((0\:stereo 1\:left\ channel 2\:right\ channel))' \
|
||||||
|
@ -108,7 +108,7 @@ _x_arguments -C -s \
|
||||||
'-z[specify compression level for png output]:compression-level:((0\:no\ compression 1 2 3 4 5 6\:default\ compression 7 8 9\:max\ compression))' \
|
'-z[specify compression level for png output]:compression-level:((0\:no\ compression 1 2 3 4 5 6\:default\ compression 7 8 9\:max\ compression))' \
|
||||||
'-zoom[use software scaling, where available (use with -nofs)]' \
|
'-zoom[use software scaling, where available (use with -nofs)]' \
|
||||||
-zrbw -zrcrop -zrdev -zrfd -zrhelp -zrnorm -zrquality -zr{h,v}dec -zr{x,y}doff \
|
-zrbw -zrcrop -zrdev -zrfd -zrhelp -zrnorm -zrquality -zr{h,v}dec -zr{x,y}doff \
|
||||||
'(-use-stdin)*:video file:->mfiles'
|
'(-use-stdin)*:video file:->mfiles' && ret=0
|
||||||
|
|
||||||
case "$state" in
|
case "$state" in
|
||||||
mfiles)
|
mfiles)
|
||||||
|
|
Loading…
Reference in a new issue