tui: hide the debugging-related command line options

This commit is contained in:
Dan Winship 2013-12-17 11:30:13 -05:00
parent 250ed1a7dd
commit 41ada32127

View file

@ -181,9 +181,9 @@ gboolean sleep_on_startup = FALSE;
gboolean noinit = FALSE;
GOptionEntry entries[] = {
{ "sleep", 's', 0, G_OPTION_ARG_NONE, &sleep_on_startup,
{ "sleep", 's', G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_NONE, &sleep_on_startup,
"Sleep on startup", NULL },
{ "noinit", 'n', 0, G_OPTION_ARG_NONE, &noinit,
{ "noinit", 'n', G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_NONE, &noinit,
"Don't initialize newt", NULL },
{ NULL }
};