commit c723048b2ddf3064212242c0ea85a8e70bba1c8a parent 9b4efb4d25e9ed4b90f52ba6ff5f162fc7cc00e5 Author: Claudio Alessi <smoppy@gmail.com> Date: Tue, 23 Aug 2022 21:55:11 +0200 Write quit message to the buffer. Diffstat:
M | circo.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/circo.c b/circo.c @@ -385,7 +385,7 @@ cmd_quit(char *cmd, char *msg) { } quit(*msg ? msg : QUIT_MESSAGE); for(b = buffers; b; b = b->next) - bprintf(b, "Quit.\n"); + bprintf(b, "Quit (%s)\n", msg); } void