comparison src/perl.c @ 628:a46a68d46d2b

[gaim-migrate @ 638] transparent smileys. don't change themes during a conversation. plus perl updates. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Mon, 07 Aug 2000 02:48:58 +0000
parents 9b0717b4a490
children 3d2f14064083
comparison
equal deleted inserted replaced
627:da0a1238874d 628:a46a68d46d2b
343 items = 0; 343 items = 0;
344 344
345 command = SvPV(ST(0), junk); 345 command = SvPV(ST(0), junk);
346 if (!command) XSRETURN(0); 346 if (!command) XSRETURN(0);
347 if (!strncasecmp(command, "signon", 6)) { 347 if (!strncasecmp(command, "signon", 6)) {
348 if (!blist) {
349 show_login();
350 dologin(0, 0);
351 }
348 } else if (!strncasecmp(command, "signoff", 7)) { 352 } else if (!strncasecmp(command, "signoff", 7)) {
353 signoff();
349 } else if (!strncasecmp(command, "away", 4)) { 354 } else if (!strncasecmp(command, "away", 4)) {
355 /* FIXME */
350 } else if (!strncasecmp(command, "back", 4)) { 356 } else if (!strncasecmp(command, "back", 4)) {
357 do_im_back();
351 } else if (!strncasecmp(command, "idle", 4)) { 358 } else if (!strncasecmp(command, "idle", 4)) {
359 /* FIXME */
352 } else if (!strncasecmp(command, "warn", 4)) { 360 } else if (!strncasecmp(command, "warn", 4)) {
361 /* FIXME */
353 } 362 }
354 363
355 XSRETURN(0); 364 XSRETURN(0);
356 } 365 }
357 366