mirror of
https://github.com/irssi/irssi.git
synced 2026-08-19 16:42:30 +02: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:
parent
4f034717c0
commit
0415b1bbce
1 changed files with 1 additions and 1 deletions
|
|
@ -377,7 +377,7 @@ static char *expand_escapes(const char *line, IRC_SERVER_REC *server, WI_IRC_REC
|
||||||
case 'n':
|
case 'n':
|
||||||
/* newline .. we need to send another "send text" event to handle it (or actually the text before the newline..) */
|
/* newline .. we need to send another "send text" event to handle it (or actually the text before the newline..) */
|
||||||
*ptr = '\0';
|
*ptr = '\0';
|
||||||
signal_emit("send text", 3, line, server, item);
|
signal_emit("send text", 3, ret, server, item);
|
||||||
ptr = ret;
|
ptr = ret;
|
||||||
break;
|
break;
|
||||||
case 't':
|
case 't':
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue