comparison m_option.c @ 10608:2cae82f2ab02

Spelling police: Something that we do not know about is unknowN.
author diego
date Thu, 14 Aug 2003 12:15:44 +0000
parents 697688503349
children 649669755efa
comparison
equal deleted inserted replaced
10607:a17ebe817e33 10608:2cae82f2ab02
1345 op = OP_CLR; 1345 op = OP_CLR;
1346 else { 1346 else {
1347 char prefix[len]; 1347 char prefix[len];
1348 strncpy(prefix,opt->name,len-1); 1348 strncpy(prefix,opt->name,len-1);
1349 prefix[len-1] = '\0'; 1349 prefix[len-1] = '\0';
1350 mp_msg(MSGT_VFILTER,MSGL_ERR, "Option %s: unknow posfix %s\n" 1350 mp_msg(MSGT_VFILTER,MSGL_ERR, "Option %s: unknown postfix %s\n"
1351 "Supported posfix are:\n" 1351 "Supported postfixes are:\n"
1352 " %3$s-add\n" 1352 " %3$s-add\n"
1353 " Append the given list to the current list\n\n" 1353 " Append the given list to the current list\n\n"
1354 " %3$s-pre\n" 1354 " %3$s-pre\n"
1355 " Prepend the given list to the current list\n\n" 1355 " Prepend the given list to the current list\n\n"
1356 " %3$s-del x,y,...\n" 1356 " %3$s-del x,y,...\n"
1357 " Remove the given elements. Take the list element index (starting from 0).\n" 1357 " Remove the given elements. Take the list element index (starting from 0).\n"
1358 " Neagtive index can be used (ie -1 is the last element)\n\n" 1358 " Negative index can be used (ie -1 is the last element)\n\n"
1359 " %3$s-clr\n" 1359 " %3$s-clr\n"
1360 " Clear the cureent list.\n",name,n,prefix); 1360 " Clear the current list.\n",name,n,prefix);
1361 1361
1362 return M_OPT_UNKNOWN; 1362 return M_OPT_UNKNOWN;
1363 } 1363 }
1364 } 1364 }
1365 1365