comparison src/util.c @ 3530:f38516e5d1ab

[gaim-migrate @ 3603] a gaim-remote fix and a gaim -h update. Thanks, John Silvestri. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Tue, 17 Sep 2002 15:40:28 +0000
parents 84df15473af6
children bdd0bebd2d04
comparison
equal deleted inserted replaced
3529:ba792dc84e32 3530:f38516e5d1ab
777 " -a, --acct display account editor window\n" 777 " -a, --acct display account editor window\n"
778 " -w, --away[=MESG] make away on signon (optional argument MESG specifies\n" 778 " -w, --away[=MESG] make away on signon (optional argument MESG specifies\n"
779 " name of away message to use)\n" 779 " name of away message to use)\n"
780 " -l, --login[=NAME] automatically login (optional argument NAME specifies\n" 780 " -l, --login[=NAME] automatically login (optional argument NAME specifies\n"
781 " account(s) to use)\n" 781 " account(s) to use)\n"
782 " -n, --loginwin don't automatically login; show login window\n"
782 " -u, --user=NAME use account NAME\n" 783 " -u, --user=NAME use account NAME\n"
783 " -f, --file=FILE use FILE as config\n" 784 " -f, --file=FILE use FILE as config\n"
784 " -d, --debug print debugging messages to stdout\n" 785 " -d, --debug print debugging messages to stdout\n"
785 " -v, --version display the current version and exit\n" 786 " -v, --version display the current version and exit\n"
786 " -h, --help display this help and exit\n", VERSION, name); 787 " -h, --help display this help and exit\n", VERSION, name);
1317 what = g_strdup(str->str); 1318 what = g_strdup(str->str);
1318 g_string_free(str, TRUE); 1319 g_string_free(str, TRUE);
1319 } 1320 }
1320 1321
1321 c = new_conversation(who); 1322 c = new_conversation(who);
1323 set_convo_gc(c, gc);
1322 g_free(who); 1324 g_free(who);
1323 if (what) { 1325 if (what) {
1324 int finish; 1326 int finish;
1325 gtk_editable_insert_text(GTK_EDITABLE(c->entry), 1327 gtk_editable_insert_text(GTK_EDITABLE(c->entry),
1326 what, strlen(what), &finish); 1328 what, strlen(what), &finish);