From: <sa...@us...> - 2006-08-01 19:52:55
|
Revision: 16609 Author: sadrul Date: 2006-08-01 12:52:48 -0700 (Tue, 01 Aug 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16609&view=rev Log Message: ----------- Let's behave properly when someone's asking for help, ai? Modified Paths: -------------- trunk/console/gntgaim.c Modified: trunk/console/gntgaim.c =================================================================== --- trunk/console/gntgaim.c 2006-08-01 19:34:43 UTC (rev 16608) +++ trunk/console/gntgaim.c 2006-08-01 19:52:48 UTC (rev 16609) @@ -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); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |