* remove the '--print' option; it's implicit

This commit is contained in:
Dirk-Jan C. Binnema
2009-11-28 14:54:46 +02:00
parent b4551febd2
commit b93402f705
3 changed files with 10 additions and 30 deletions

View File

@ -71,8 +71,6 @@ mu_config_options_group_query (MuConfigOptions *opts)
{
GOptionGroup *og;
GOptionEntry entries[] = {
{"print", 'p', 0, G_OPTION_ARG_NONE, &opts->print,
"print matching messages to screen (default)", NULL},
{"xquery", 'x', 0, G_OPTION_ARG_NONE, &opts->xquery,
"print a string representation of the Xapian query", NULL},
{"fields", 'f', 0, G_OPTION_ARG_STRING, &opts->fields,
@ -114,7 +112,6 @@ mu_config_set_defaults (MuConfigOptions *opts)
opts->reindex = FALSE;
/* querying */
opts->print = TRUE;
opts->xquery = FALSE;
opts->fields = "d f s";
}