diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2005-06-15 17:16:35 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2005-06-15 17:16:35 +0000 |
commit | 5b3f96daceaa7f41c90471ffd837010c06493914 (patch) | |
tree | d4b5beb5bb90dab5aeae3e330999353e3a0cd197 /src | |
parent | 821c2e87c83d73e639d5ee17b234998f09dcc0ea (diff) | |
download | weechat-5b3f96daceaa7f41c90471ffd837010c06493914.zip |
Display message content when nick is not found for an incoming "PRIVMSG" message
Diffstat (limited to 'src')
-rw-r--r-- | src/irc/irc-recv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/irc/irc-recv.c b/src/irc/irc-recv.c index 8b7394366..add452e24 100644 --- a/src/irc/irc-recv.c +++ b/src/irc/irc-recv.c @@ -1203,8 +1203,8 @@ irc_cmd_recv_privmsg (t_irc_server *server, char *host, char *arguments) { irc_display_prefix (server->buffer, PREFIX_ERROR); gui_printf_nolog (server->buffer, - _("%s nick \"%s\" not found for \"%s\" command\n"), - WEECHAT_ERROR, host, "privmsg"); + _("%s nick \"%s\" not found for \"%s\" command (message: \"%s\")\n"), + WEECHAT_ERROR, host, "privmsg", pos); return -1; } } |