# HG changeset patch # User diego # Date 1106159093 0 # Node ID bef9d6dc23330cbc6287050b982628080e301753 # Parent b13b7088f1d91ece4ad2351f28807013250f8f5a Clarify confusing error message. diff -r b13b7088f1d9 -r bef9d6dc2333 parser-mecmd.c --- a/parser-mecmd.c Wed Jan 19 18:05:03 2005 +0000 +++ b/parser-mecmd.c Wed Jan 19 18:24:53 2005 +0000 @@ -72,7 +72,7 @@ no_more_opts = 1; if (i+1 >= argc) { - mp_msg(MSGT_CFGPARSER, MSGL_ERR, "You added '--' but no filenames presented!\n"); + mp_msg(MSGT_CFGPARSER, MSGL_ERR, "'--' indicates no more options, but no filename was given on the command line.\n"); goto err_out; } continue; diff -r b13b7088f1d9 -r bef9d6dc2333 parser-mpcmd.c --- a/parser-mpcmd.c Wed Jan 19 18:05:03 2005 +0000 +++ b/parser-mpcmd.c Wed Jan 19 18:24:53 2005 +0000 @@ -95,7 +95,7 @@ no_more_opts = 1; if (i+1 >= argc) { - mp_msg(MSGT_CFGPARSER, MSGL_ERR, "You added '--' but no filenames presented!\n"); + mp_msg(MSGT_CFGPARSER, MSGL_ERR, "'--' indicates no more options, but no filename was given on the command line.\n"); goto err_out; } continue;