terminology: Check for correct terminator

SVN revision: 77483
This commit is contained in:
Sebastian Dransfeld 2012-10-04 23:18:50 +00:00
parent 146ee734c7
commit 2b8026c24c
1 changed files with 1 additions and 1 deletions

View File

@ -878,7 +878,7 @@ _handle_esc_xterm(Termpty *ty, const Eina_Unicode *c, Eina_Unicode *ce)
cc++;
}
*b = 0;
if ((*cc < ' ') || (*cc >= 0x7f)) cc++;
if ((*cc == ST) || (*cc == BEL)) cc++;
else return -2;
switch (buf[0])
{