# HG changeset patch # User reimar # Date 1163792278 0 # Node ID 28714c74c444423ef83b4ec8ce79dd491ff90def # Parent 99d7c6cb0f818c5aba023ebc4153c060607315af Since vobsub_lang and sub_select do the same, 'b' and 'j' were bound to the same thing. Remove the binding for 'b'. diff -r 99d7c6cb0f81 -r 28714c74c444 DOCS/man/en/mplayer.1 --- a/DOCS/man/en/mplayer.1 Fri Nov 17 19:16:07 2006 +0000 +++ b/DOCS/man/en/mplayer.1 Fri Nov 17 19:37:58 2006 +0000 @@ -257,7 +257,7 @@ (see \-framedrop and \-hardframedrop). .IPs "v\ \ \ \ " Toggle subtitle visibility. -.IPs "b / j" +.IPs "j\ \ \ \ " Cycle through the available subtitles. .IPs "y and g" Step forward/backward in the subtitle list. diff -r 99d7c6cb0f81 -r 28714c74c444 input/input.c --- a/input/input.c Fri Nov 17 19:16:07 2006 +0000 +++ b/input/input.c Fri Nov 17 19:37:58 2006 +0000 @@ -376,8 +376,7 @@ { { 't', 0 }, "sub_pos +1" }, { { 'a', 0 }, "sub_alignment" }, { { 'v', 0 }, "sub_visibility" }, - { { 'b', 0 }, "sub_select" }, - { { 'j', 0 }, "vobsub_lang" }, + { { 'j', 0 }, "sub_select" }, { { 'F', 0 }, "forced_subs_only" }, { { '#', 0 }, "switch_audio" }, { { '_', 0 }, "step_property switch_video" },