summaryrefslogtreecommitdiff
path: root/chat/xchat/patches
diff options
context:
space:
mode:
authortron <tron>2002-11-24 13:40:47 +0000
committertron <tron>2002-11-24 13:40:47 +0000
commit76a749f6e33cb763037d057fff337dbd1f4c15c9 (patch)
tree8860a42d79bff171c818d5afc427e65c4a6b57db /chat/xchat/patches
parent1ad7d9a36e0068df55fa5e7f5933a03bd7ae1501 (diff)
downloadpkgsrc-76a749f6e33cb763037d057fff337dbd1f4c15c9.tar.gz
Fetch patch for "/ME" for "xchat" site instead of duplication it in
the package sources.
Diffstat (limited to 'chat/xchat/patches')
-rw-r--r--chat/xchat/patches/patch-aa37
1 files changed, 0 insertions, 37 deletions
diff --git a/chat/xchat/patches/patch-aa b/chat/xchat/patches/patch-aa
deleted file mode 100644
index bf5f1fcfd91..00000000000
--- a/chat/xchat/patches/patch-aa
+++ /dev/null
@@ -1,37 +0,0 @@
-$NetBSD: patch-aa,v 1.6 2002/11/24 13:20:45 tron Exp $
-
---- src/common/inbound.c.orig Wed Aug 7 12:15:59 2002
-+++ src/common/inbound.c
-@@ -243,19 +243,21 @@ channel_action (session *sess, char *tbu
- if (EMIT_SIGNAL (XP_CHANACTION, sess, chan, from, text, NULL, fromme) == 1)
- return;
-
-- if (is_channel (serv, chan) || fromme)
-+ if (!fromme)
- {
-- sess = find_channel (chan, serv);
-- if (!fromme && sess)
-- if (fe_is_beep (sess) || prefs.beepchans)
-+ if (is_channel (serv, chan))
-+ {
-+ sess = find_channel (chan, serv);
-+ if (sess)
-+ if (fe_is_beep (sess) || prefs.beepchans)
-+ fe_beep ();
-+ } else
-+ {
-+ /* it's a private action! */
-+ sess = find_dialog (serv, from);
-+ if (((sess) && fe_is_beep (sess)) || prefs.beepmsg)
- fe_beep ();
-- }
-- else
-- {
-- /* it's a private action! */
-- sess = find_dialog (serv, from);
-- if (((sess) && fe_is_beep (sess)) || prefs.beepmsg)
-- fe_beep ();
-+ }
- }
-
- if (!sess && !is_channel (serv, chan) && prefs.autodialog)