From 449d2b2c4de9e3579fdf555761862b909e52e9d5 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 30 Oct 2022 16:37:29 -0400 Subject: Use $pounce as clientQuit keyword --- client.c | 4 ++-- edit.c | 2 +- pounce.1 | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/client.c b/client.c index 19296ed..1ae31ed 100644 --- a/client.c +++ b/client.c @@ -281,8 +281,8 @@ static void handleAuthenticate(struct Client *client, struct Message *msg) { static void handleQuit(struct Client *client, struct Message *msg) { const char *mesg = msg->params[0]; - if (mesg && !strncmp(mesg, "pounce", 6) && (!mesg[6] || mesg[6] == ' ')) { - mesg += 6; + if (mesg && !strncmp(mesg, "$pounce", 7) && (!mesg[7] || mesg[7] == ' ')) { + mesg += 7; mesg += strspn(mesg, " "); clientQuit = strdup(mesg); if (!clientQuit) err(EX_OSERR, "strdup"); diff --git a/edit.c b/edit.c index 793e413..4003fac 100644 --- a/edit.c +++ b/edit.c @@ -404,7 +404,7 @@ static void handlePrivmsg(struct Message *msg) { ); } else if (!strcmp(cmd, "restart")) { - format("QUIT :pounce reloading configuration\r\n"); + format("QUIT :$pounce reloading configuration\r\n"); } } diff --git a/pounce.1 b/pounce.1 index 3a5a81c..67d3ae9 100644 --- a/pounce.1 +++ b/pounce.1 @@ -1,4 +1,4 @@ -.Dd April 3, 2022 +.Dd October 30, 2022 .Dt POUNCE 1 .Os . @@ -479,7 +479,7 @@ will simply be disconnected from If, however, the quit message starts with the keyword -.Nm , +.Sy $pounce , .Nm itself will quit. The remainder of the message -- cgit 1.4.1 />
path: root/etc/code.map (unfollow)
Commit message (Expand)Author
2019-01-18Update gfx-cocoa constants for new macOSJune McEnroe
2019-01-17Add Girlpool Tiny Desk ConcertJune McEnroe
2019-01-17Reunify gfx and binJune McEnroe
2019-01-17Reorganize bin and Makefile once againJune McEnroe
2019-01-17Don't use string functions in ttpreJune McEnroe
2019-01-16Fix some symbols in sans8x16June McEnroe
2019-01-15Add basic HISTFILE load and saveJune McEnroe
2019-01-15Add !! alias in cashJune McEnroe
2019-01-15Add shell and unshell targetsJune McEnroe
2019-01-15Use \$ in cash PS1 and add # to RPS1June McEnroe
2019-01-15Use flock(2) when loading and saving historyJune McEnroe
2019-01-15Add sans8x16.psfJune McEnroe
2019-01-14Add guides to psfedJune McEnroe
2019-01-14Check for NULL copy or undo buffers in psfedJune McEnroe
2019-01-14Add cash.7 READMEJune McEnroe
2019-01-14Document old=new argument of fc -sJune McEnroe
2019-01-14Allow replacing empty string with fc old=newJune McEnroe
2019-01-13Enable warnings in libeditJune McEnroe
2019-01-13Show full path in RPS1June McEnroe
2019-01-13Shorten $HOME to ~ in prompt expansionJune McEnroe
2019-01-13Document PSlitJune McEnroe
2019-01-13Document PS0June McEnroe
2019-01-13Set PS0 in cashJune McEnroe
2019-01-13Add PS0June McEnroe
2019-01-13Change default ENV from cashrc to env.shJune McEnroe
2019-01-13Use colours in cash promptsJune McEnroe
2019-01-12Set PSlit like NetBSD shJune McEnroe
2019-01-12Install gnupg2 from pkgsrc and symlink gpgJune McEnroe
2019-01-12Reference cash builtin man pages in cash.1 SEE ALSOJune McEnroe
2019-01-12Restore cash builtin man page datesJune McEnroe
2019-01-12Use local libeditJune McEnroe
2019-01-12Replace libedit MakefileJune McEnroe
2019-01-11Import /usr/src/lib/libedit from NetBSD 8.0June McEnroe
2019-01-11Add PSlit for prompt escapesJune McEnroe
2019-01-11Don't make depend automaticallyJune McEnroe