irctk

libircclient binding for scripts
git clone https://a3nm.net/git/irctk/
Log | Files | Refs | README

commit b8fb60088bca5d3fa3445dd9600fe80173a7f587
parent 636b0ae2790e1a5f657dfd900f78b42d02db7168
Author: Antoine Amarilli <a3nm@a3nm.net>
Date:   Fri,  9 May 2014 18:22:26 +0200

gender-neutral

Diffstat:
irctk.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/irctk.c b/irctk.c @@ -124,10 +124,10 @@ static struct argp_option options[] = { BOT_OPTIONS }, {"no-track-renames", 'T', 0, 0, - "When sending to a user, do not track him if he changes nick (default)", + "When sending to a user, do not track them if they changes nick (default)", TRACKING }, {"track-renames", 't', 0, 0, - "When sending to a user, track him if he changes nick", + "When sending to a user, track them if they changes nick", TRACKING }, {"unique-names", 'u', 0, 0, "Track nick changes and expose unique names for users", @@ -1351,7 +1351,7 @@ void cmd_msg(char *full_line, char *target, char *line) void saw_user(const char *nick) { if (!nick) return; if (!surface_nick_exists(&fifos, nick)) { - // unknown user, register him + // unknown user, register them debug("Register this new user\n"); register_nick(&fifos, nick); }