git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12654 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
alex 2004-06-25 17:01:25 +00:00
parent 96d7f792be
commit 5962b1f14a
1 changed files with 5 additions and 5 deletions

View File

@ -1389,15 +1389,15 @@ static int parse_obj_settings_list(m_option_t* opt,char *name,
prefix[len-1] = '\0';
mp_msg(MSGT_VFILTER,MSGL_ERR, "Option %s: unknown postfix %s\n"
"Supported postfixes are:\n"
" %3$s-add\n"
" %s-add\n"
" Append the given list to the current list\n\n"
" %3$s-pre\n"
" %s-pre\n"
" Prepend the given list to the current list\n\n"
" %3$s-del x,y,...\n"
" %s-del x,y,...\n"
" Remove the given elements. Take the list element index (starting from 0).\n"
" Negative index can be used (i.e. -1 is the last element)\n\n"
" %3$s-clr\n"
" Clear the current list.\n",name,n,prefix);
" %s-clr\n"
" Clear the current list.\n",name,n,prefix,prefix,prefix,prefix);
return M_OPT_UNKNOWN;
}