termptyesc: add missing debug line on bell

This commit is contained in:
Boris Faure 2020-04-06 22:58:48 +02:00
parent 0eac2752d3
commit 5da6d66134
Signed by: borisfaure
GPG Key ID: 35C0410516166BE8
1 changed files with 1 additions and 0 deletions

View File

@ -213,6 +213,7 @@ _handle_cursor_control(Termpty *ty, const Eina_Unicode *cc)
switch (*cc)
{
case 0x07: // BEL '\a' (bell)
DBG("->BEL");
if (ty->cb.bell.func) ty->cb.bell.func(ty->cb.bell.data);
return;
case 0x08: // BS '\b' (backspace)