From 18dcb256acf786a0594b24f0cf35750696f8c8c9 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Fri, 3 Aug 2018 19:34:28 -0400 Subject: Ignore NOTICEs not sent to the channel --- chat.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/chat.c b/chat.c index 0482c03..ecf7267 100644 --- a/chat.c +++ b/chat.c @@ -365,9 +365,10 @@ static void handlePrivmsg(char *prefix, char *params) { static void handleNotice(char *prefix, char *params) { char *nick = prift(&prefix); char *user = prift(&prefix); - shift(¶ms); - char *message = shift(¶ms); - uiFmt("-\3%d%s\3- %s", color(user), nick, message); + char *chan = shift(¶ms); + char *mesg = shift(¶ms); + if (strcmp(client.chan, chan)) return; + uiFmt("-\3%d%s\3- %s", color(user), nick, mesg); } static const struct { -- cgit 1.4.1 roup> dontfiles
summary refs log tree commit diff
path: root/bin/man1/order.1 (unfollow)
Commit message (Collapse)Author
2022-03-24Skip matches with ident chars on either sideJune McEnroe
This fixes, for example, where the link gets placed on static regex_t regex(const char *pattern, int flags) in title.c.
2022-03-24Add The Invisible Life of Addie LaRueJune McEnroe
So good, but so long. Reminded me of The Ten Thousand Doors of January at the beginning, and more of that N. K. Jemisin series about gods later. I like this interacting with gods and becoming something like one sort of thing. God, it took me a whole month (more?) to read and this is only my third book of the year :( I need some more novellas to read, but the other books I have from the library currently are also thick.
2022-03-22Source ~/.profile.local if it existsJune McEnroe
2022-03-18Publish "Addendum 2021"June McEnroe
2022-03-16Remove wcwidth portJune McEnroe
DYLD_FORCE_FLAT_NAMESPACE no longer exists in macOS 12 so this approach doesn't work anymore. Moved to <https://git.causal.agency/jorts/tree/wcwidth> and compiled into <https://git.causal.agency/jorts/tree/ncurses>.
2022-03-16Remove -j4 from ./PlanJune McEnroe
Plan learned to set this automatically!
2022-03-15Rewrite Linux install.sh for DebianJune McEnroe
2022-03-15Remove dashJune McEnroe