billiob pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=f56f6cd07ef40fdb8f644a4ee3943a85f4c8f713
commit f56f6cd07ef40fdb8f644a4ee3943a85f4c8f713 Author: Boris Faure <[email protected]> Date: Fri Apr 17 00:02:57 2020 +0200 termptyext: remove useless assignment --- src/bin/termptyext.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/termptyext.c b/src/bin/termptyext.c index 7cc41fc..29ecdac 100644 --- a/src/bin/termptyext.c +++ b/src/bin/termptyext.c @@ -215,7 +215,7 @@ _handle_mouse_wheel(Termpty *ty, buf += _tytest_arg_get(buf, &value); ev.z *= value; /* MODIFIERS */ - buf += _tytest_modifiers_get(buf, &modifiers); + _tytest_modifiers_get(buf, &modifiers); termio_internal_mouse_wheel(sd, &ev, modifiers); } @@ -360,7 +360,7 @@ _handle_corner(Termpty *ty, const Eina_Unicode *buf) /* V */ value = 0; - buf += _tytest_arg_get(buf, &value); + _tytest_arg_get(buf, &value); if (corner == 0) { --
