From 5da6d66134cb791b47d936cde8e6f23e504d54f2 Mon Sep 17 00:00:00 2001 From: Boris Faure Date: Mon, 6 Apr 2020 22:58:48 +0200 Subject: [PATCH] termptyesc: add missing debug line on bell --- src/bin/termptyesc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/termptyesc.c b/src/bin/termptyesc.c index 3becfce3..906f30a0 100644 --- a/src/bin/termptyesc.c +++ b/src/bin/termptyesc.c @@ -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)