1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-09 11:13:12 +02:00

irc: fix split of received IRC message: keep spaces at the end of message

This commit is contained in:
Sebastien Helleu
2012-08-22 15:50:26 +02:00
parent d8d0d6e4c6
commit 9310737d5d
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -58,6 +58,7 @@ Version 0.3.9 (under dev!)
* fifo: ignore read failing with error EAGAIN (bug #37019)
* guile: fix crash when unloading a script without pointer to interpreter
* guile: fix path of guile include dirs in cmake build (patch #7790)
* irc: fix split of received IRC message: keep spaces at the end of message
* irc: move options from core to irc plugin: weechat.look.nickmode to
irc.look.nick_mode (new type: integer with values: none/prefix/action/both)
and weechat.look.nickmode_empty to irc.look.nick_mode_empty
+1 -1
View File
@@ -4642,7 +4642,7 @@ irc_protocol_recv_command (struct t_irc_server *server,
else
dup_irc_message = NULL;
argv = weechat_string_split (dup_irc_message, " ", 0, 0, &argc);
argv_eol = weechat_string_split (dup_irc_message, " ", 1, 0, NULL);
argv_eol = weechat_string_split (dup_irc_message, " ", 2, 0, NULL);
return_code = (int) (cmd_recv_func) (server,
nick, address_color, host_color,