comparison src/protocols/irc/msgs.c @ 10637:43194088f3f7

[gaim-migrate @ 12119] Oops, g_markup, not gaim_markup committer: Tailor Script <tailor@pidgin.im>
author Ethan Blanton <elb@pidgin.im>
date Thu, 24 Feb 2005 14:19:53 +0000
parents 483765e4a26c
children 861ae6ee7b6c
comparison
equal deleted inserted replaced
10636:0f5c5e6fb27f 10637:43194088f3f7
457 gaim_conv_im_write(GAIM_CONV_IM(convo), args[1], _("User is not logged in"), 457 gaim_conv_im_write(GAIM_CONV_IM(convo), args[1], _("User is not logged in"),
458 GAIM_MESSAGE_SYSTEM|GAIM_MESSAGE_NO_LOG, time(NULL)); 458 GAIM_MESSAGE_SYSTEM|GAIM_MESSAGE_NO_LOG, time(NULL));
459 } else { 459 } else {
460 if ((gc = gaim_account_get_connection(irc->account)) == NULL) 460 if ((gc = gaim_account_get_connection(irc->account)) == NULL)
461 return; 461 return;
462 nick = gaim_markup_escape_text(args[1], -1); 462 nick = g_markup_escape_text(args[1], -1);
463 gaim_notify_error(gc, NULL, _("No such nick or channel"), nick); 463 gaim_notify_error(gc, NULL, _("No such nick or channel"), nick);
464 g_free(nick); 464 g_free(nick);
465 } 465 }
466 466
467 if (irc->whois.nick && !gaim_utf8_strcasecmp(irc->whois.nick, args[1])) { 467 if (irc->whois.nick && !gaim_utf8_strcasecmp(irc->whois.nick, args[1])) {