comparison src/server.c @ 1643:d7e380618fd5

[gaim-migrate @ 1653] linkify in chat. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Sat, 24 Mar 2001 09:47:17 +0000
parents 69a004b5820a
children 55bb0e870537
comparison
equal deleted inserted replaced
1642:b29f70d97062 1643:d7e380618fd5
726 return; 726 return;
727 727
728 if (plugin_event(event_chat_recv, g, b->name, who, message)) 728 if (plugin_event(event_chat_recv, g, b->name, who, message))
729 return; 729 return;
730 730
731 if (general_options & OPT_GEN_SEND_LINKS) {
732 linkify_text(message);
733 }
734
731 if (whisper) 735 if (whisper)
732 w = WFLAG_WHISPER; 736 w = WFLAG_WHISPER;
733 else 737 else
734 w = 0; 738 w = 0;
735 739