# HG changeset patch # User Sadrul Habib Chowdhury # Date 1154461968 0 # Node ID 6b4a8f05cadd97495f5adff612569bf6cafb730f # Parent c7742fbe41fc73d982b3ca1f29dcce5ac03248bb [gaim-migrate @ 16609] Let's behave properly when someone's asking for help, ai? diff -r c7742fbe41fc -r 6b4a8f05cadd 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); }