diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/ephy-main.c | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2006-04-13 Christian Persch <chpe@cvs.gnome.org> + + * src/ephy-main.c: + + Add -p as short option format for --private-instance. + 2006-04-12 Christian Persch <chpe@cvs.gnome.org> * src/languages.h: diff --git a/src/ephy-main.c b/src/ephy-main.c index 16865aecb..ba9506901 100644 --- a/src/ephy-main.c +++ b/src/ephy-main.c @@ -86,7 +86,7 @@ static const GOptionEntry option_entries[] = N_("Load the given session file"), N_("FILE") }, { "add-bookmark", 't', 0, G_OPTION_ARG_STRING, &bookmark_url, N_("Add a bookmark"), N_("URL") }, - { "private-instance", 0, 0, G_OPTION_ARG_NONE, &private_instance, + { "private-instance", 'p', 0, G_OPTION_ARG_NONE, &private_instance, N_("Start a private instance"), NULL }, { "profile", 0, 0, G_OPTION_ARG_STRING, &profile_directory, N_("Profile directory to use in the private instance"), N_("DIR") }, |