mirror of
https://github.com/irssi/irssi.git
synced 2026-08-19 16:42:30 +02:00
Merge pull request #1275 from ailin-nemui/tags-heap
stop parsing on lone tag escape
This commit is contained in:
commit
b2c9365623
1 changed files with 2 additions and 0 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue