From 4ba886f7aaf884c518637173be0b1d8e9b190e86 Mon Sep 17 00:00:00 2001 From: TingPing Date: Sun, 29 Sep 2013 01:52:21 -0400 Subject: [PATCH] Accept %I in text events --- src/common/outbound.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/common/outbound.c b/src/common/outbound.c index cd0cd021..72273a14 100644 --- a/src/common/outbound.c +++ b/src/common/outbound.c @@ -4308,6 +4308,9 @@ check_special_chars (char *cmd, int do_ascii) /* check for %X */ case 'B': buf[i] = '\002'; break; + case 'I': + buf[i] = '\035'; + break; case 'C': buf[i] = '\003'; break;