about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--catgirl.14
-rw-r--r--command.c1
2 files changed, 4 insertions, 1 deletions
diff --git a/catgirl.1 b/catgirl.1
index a69d282..138b982 100644
--- a/catgirl.1
+++ b/catgirl.1
@@ -1,4 +1,4 @@
-.Dd February 29, 2020
+.Dd March 22, 2020
 .Dt CATGIRL 1
 .Os
 .
@@ -270,6 +270,8 @@ Start a private conversation.
 Quit IRC.
 .It Ic /quote Ar command
 Send a raw IRC command.
+.It Ic /say Ar message
+Send a regular message.
 .It Ic /topic Op Ar topic
 Show or set the topic of the channel.
 .It Ic /whois Ar nick
diff --git a/command.c b/command.c
index 701486b..3ef4d5d 100644
--- a/command.c
+++ b/command.c
@@ -357,6 +357,7 @@ static const struct Handler {
 	{ "/query", .fn = commandQuery, .restricted = true },
 	{ "/quit", .fn = commandQuit },
 	{ "/quote", .fn = commandQuote, .restricted = true },
+	{ "/say", .fn = commandPrivmsg },
 	{ "/topic", .fn = commandTopic },
 	{ "/unban", .fn = commandUnban },
 	{ "/unexcept", .fn = commandUnexcept },
e='2019-02-23 00:09:17 +0100'>2019-02-23ui-diff,ui-tag: don't use htmlf with non-formatted stringsChris Mayo 2019-02-23ui-ssdiff: resolve HTML5 validation errorsChris Mayo 2019-01-03filters: migrate from luacrypto to luaosslJason A. Donenfeld 2019-01-02ui-shared: fix broken sizeof in title setting and rewriteJason A. Donenfeld 2018-12-09git: update to v2.20.0Christian Hesse 2018-11-25ui-blame: set repo for sbJason A. Donenfeld 2018-11-25auth-filter: pass url with query string attachedJason A. Donenfeld 2018-11-21git: use xz compressed archive for downloadChristian Hesse 2018-10-12git: update to v2.19.1Christian Hesse 2018-09-11ui-ssdiff: ban strcat()Christian Hesse 2018-09-11ui-ssdiff: ban strncpy()Christian Hesse 2018-09-11ui-shared: ban strcat()Christian Hesse 2018-09-11ui-patch: ban sprintf()Christian Hesse 2018-09-11ui-log: ban strncpy()Christian Hesse 2018-09-11ui-log: ban strcpy()Christian Hesse 2018-09-11parsing: ban sprintf()Christian Hesse 2018-09-11parsing: ban strncpy()Christian Hesse 2018-08-28filters: generate anchor links from markdownChristian Hesse 2018-08-03Bump version.Jason A. Donenfeld 2018-08-03clone: fix directory traversalJason A. Donenfeld 2018-08-03config: record repo.snapshot-prefix in the per-repo configKonstantin Ryabitsev