1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-29 04:45:57 -04:00

Using \n with /SET expand_escapes ON didn't work right.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@379 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-06-25 22:40:25 +00:00 committed by cras
parent 4f034717c0
commit 0415b1bbce

View File

@ -377,7 +377,7 @@ static char *expand_escapes(const char *line, IRC_SERVER_REC *server, WI_IRC_REC
case 'n':
/* newline .. we need to send another "send text" event to handle it (or actually the text before the newline..) */
*ptr = '\0';
signal_emit("send text", 3, line, server, item);
signal_emit("send text", 3, ret, server, item);
ptr = ret;
break;
case 't':