circo

claudio's IRC oasis
git clone git://git.bitsmanent.org/circo
Log | Files | Refs | README | LICENSE

commit 9ed7743335babc24b187744b772baa6613b4ff56
parent c0b3d85c9865e1be78aa2cab4f22cce4febd9513
Author: Claudio Alessi <smoppy@gmail.com>
Date:   Thu, 19 Apr 2018 19:46:31 +0200

Auto-select the buffer when join.

Diffstat:
Mcirco.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/circo.c b/circo.c @@ -819,6 +819,7 @@ recv_join(char *who, char *chan, char *txt) { b = newbuf(chan); if(!b) /* malformed message */ return; + sel = b; } bprintf(b, "JOIN %s\n", who); if(b == sel)