# HG changeset patch # User Sadrul Habib Chowdhury # Date 1154461968 0 # Node ID a4aee1adefcf248e13b0e7c1fb869260ef83c42f # Parent 9516a796ed5fbbbd163749ff17b3249eac16d807 [gaim-migrate @ 16609] Let's behave properly when someone's asking for help, ai? committer: Tailor Script diff -r 9516a796ed5f -r a4aee1adefcf console/gntgaim.c --- a/console/gntgaim.c Tue Aug 01 17:39:47 2006 +0000 +++ b/console/gntgaim.c Tue Aug 01 19:52:48 2006 +0000 @@ -140,9 +140,9 @@ char *text; if (terse) { - text = g_strdup_printf(_("Gaim %s. Try `%s -h' for more information.\n"), VERSION, name); + text = g_strdup_printf(_("%s. Try `%s -h' for more information.\n"), VERSION, name); } else { - text = g_strdup_printf(_("Gaim %s\n" + text = g_strdup_printf(_("%s\n" "Usage: %s [OPTION]...\n\n" " -c, --config=DIR use DIR for config files\n" " -d, --debug print debugging messages to stdout\n" @@ -151,6 +151,7 @@ " -v, --version display the current version and exit\n"), VERSION, name); } + gnt_quit(); gaim_print_utf8_to_console(stdout, text); g_free(text); }