This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository terminology.

View the commit online.

commit cc809d1418fc36fc222fef7e123c689f1562d2e6
Author: Boris Faure <[email protected]>
AuthorDate: Sat Sep 12 16:06:51 2026 +0200

    keyin: send ESC ESC for Alt+Escape
    
    0x9b is the 8-bit CSI introducer, not a legal standalone byte in UTF-8.
---
 src/bin/keyin.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/keyin.c b/src/bin/keyin.c
index 02ec473c..9236bc61 100644
--- a/src/bin/keyin.c
+++ b/src/bin/keyin.c
@@ -147,7 +147,7 @@ keyin_handle_key_to_pty(Termpty *ty, const Evas_Event_Key_Down *ev,
           {
              if (alt)
                {
-                  TERMPTY_WRITE_STR("\x9b");
+                  TERMPTY_WRITE_STR("\033\033");
                }
              else
                {

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to