fix handling - filtering out 0xf7 -> del. don't do it. it's a divide

sign in unicode.



SVN revision: 72935
This commit is contained in:
Carsten Haitzler 2012-06-27 10:08:14 +00:00
parent da57521fcc
commit d393562526
1 changed files with 1 additions and 7 deletions

View File

@ -1762,12 +1762,6 @@ _handle_seq(Termpty *ty, const int *c, int *ce)
return 1;
}
}
else if (c[0] == 0xf7) // DEL
{
ERR("unhandled char 0x%02x [DEL]", c[0]);
ty->state.had_cr = 0;
return 1;
}
else if (c[0] == 0x9b) // ANSI ESC!!!
{
int v;
@ -1781,7 +1775,7 @@ _handle_seq(Termpty *ty, const int *c, int *ce)
cc = (int *)c;
DBG("txt: [");
while ((cc < ce) && (*cc >= 0x20) && (*cc != 0xf7))
while ((cc < ce) && (*cc >= 0x20))
{
DBG("%c", *cc);
cc++;