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 287bf5ab6e38437c2c283d0ec45fc210cf929288
Author: Boris Faure <bill...@gmail.com>
AuthorDate: Mon Aug 14 15:13:56 2023 +0200

    termptyesc: remove unused argument
---
 src/bin/termptyesc.c | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/src/bin/termptyesc.c b/src/bin/termptyesc.c
index 6984521..76a3b2f 100644
--- a/src/bin/termptyesc.c
+++ b/src/bin/termptyesc.c
@@ -3303,8 +3303,7 @@ _handle_window_manipulation(Termpty *ty, Eina_Unicode **ptr)
 
 static void
 _handle_xmodkeys(Termpty *ty,
-                 Eina_Unicode cmd, Eina_Unicode **ptr,
-                 const Eina_Unicode * const end)
+                 Eina_Unicode cmd, Eina_Unicode **ptr)
 {
    Eina_Unicode *b = *ptr;
    Eina_Bool set = (cmd == 'm');
@@ -3536,13 +3535,13 @@ _handle_esc_csi(Termpty *ty, const Eina_Unicode *c, const Eina_Unicode *ce)
         break;
       case 'm': // color set
         if (b && (*b == '>' || *b == '?'))
-          _handle_xmodkeys(ty, *cc, &b, be);
+          _handle_xmodkeys(ty, *cc, &b);
         else
           _handle_esc_csi_color_set(ty, &b, be);
         break;
       case 'n':
         if (*b == '>')
-          _handle_xmodkeys(ty, *cc, &b, be);
+          _handle_xmodkeys(ty, *cc, &b);
         else
           _handle_esc_csi_dsr(ty, b);
         break;

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

Reply via email to