From 2ae01c91c28ea8ce05266d1e121438af140b870f Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Wed, 18 Mar 2026 01:43:59 -0400 Subject: Channel nick-complete includes join messages. --- src/complete.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/complete.c') diff --git a/src/complete.c b/src/complete.c index 130a015..d168398 100644 --- a/src/complete.c +++ b/src/complete.c @@ -65,8 +65,8 @@ char match(const char *p, const char *q) { void scrape_nick(char *p) { char i; - if(*p == '<' || *p == 0xbc) { - /* normal or inverse < in column 0 is a nick */ + if(*p == '<' || *p == 0xbc || *p == 0xbd) { + /* normal or inverse <, or inverse =, in column 0 is a nick */ p++; } else if(*p == '*' && p[1] == ' ') { p += 2; /* /me action, skip the "* " */ -- cgit v1.2.3