mirror of
https://github.com/irssi/irssi.git
synced 2025-04-25 20:41:23 -05:00
Merge pull request #1275 from ailin-nemui/tags-heap
stop parsing on lone tag escape
This commit is contained in:
commit
b2c9365623
@ -395,6 +395,8 @@ static void unescape_tag(char *tag)
|
||||
for (; *tmp != '\0'; tmp++, tag++) {
|
||||
if (*tmp == '\\') {
|
||||
tmp++;
|
||||
if (*tmp == '\0')
|
||||
break;
|
||||
switch (*tmp) {
|
||||
case ':':
|
||||
*tag = ';';
|
||||
|
Loading…
x
Reference in New Issue
Block a user