commit 261f684300c184a198778cefa28facfa8e680e9f
parent 9d574e42908d243417d18fdda5110d3e7166a4c3
Author: Claudio Alessi <smoppy@gmail.com>
Date: Sat, 11 Jun 2022 11:48:46 +0200
Print a message in current buffer when the nick has changed.
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/circo.c b/circo.c
@@ -1329,6 +1329,7 @@ recv_nick(char *who, char *u, char *upd) {
if(!strcmp(who, nick)) {
strcpy(nick, upd);
sel->need_redraw |= REDRAW_BAR;
+ bprintf(sel, "Nick changed to %s\n", upd);
}
for(b = buffers; b; b = b->next) {
if(!nickget(b, who))