billiob pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=1e89fcd0206a1f0851990363533d8b17f4998079
commit 1e89fcd0206a1f0851990363533d8b17f4998079 Author: Boris Faure <[email protected]> Date: Fri Apr 17 21:52:06 2020 +0200 termptyext.c: remove useless assignments --- src/bin/termptyext.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bin/termptyext.c b/src/bin/termptyext.c index 29ecdac..54e8fb5 100644 --- a/src/bin/termptyext.c +++ b/src/bin/termptyext.c @@ -119,7 +119,7 @@ _handle_mouse_down(Termpty *ty, buf += _tytest_modifiers_get(buf, &modifiers); /* FLAGS */ value = 0; - buf +=_tytest_arg_get(buf, &value); + _tytest_arg_get(buf, &value); ev.flags = value; termio_internal_mouse_down(sd, &ev, modifiers); @@ -153,7 +153,7 @@ _handle_mouse_up(Termpty *ty, buf += _tytest_modifiers_get(buf, &modifiers); /* FLAGS */ value = 0; - buf +=_tytest_arg_get(buf, &value); + _tytest_arg_get(buf, &value); ev.flags = value; termio_internal_mouse_up(sd, &ev, modifiers); @@ -180,7 +180,7 @@ _handle_mouse_move(Termpty *ty, buf += _tytest_arg_get(buf, &value); ev.cur.canvas.y = value; /* MODIFIERS */ - buf += _tytest_modifiers_get(buf, &modifiers); + _tytest_modifiers_get(buf, &modifiers); termio_internal_mouse_move(sd, &ev, modifiers); } --
