billiob pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=a56a76afc762ab8213834b503cbcf316b1dc1662
commit a56a76afc762ab8213834b503cbcf316b1dc1662 Author: Boris Faure <[email protected]> Date: Wed Jul 15 21:11:05 2020 +0200 termptyesc: handle single osc arg --- src/bin/termptyesc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/termptyesc.c b/src/bin/termptyesc.c index 70027b8..0600266 100644 --- a/src/bin/termptyesc.c +++ b/src/bin/termptyesc.c @@ -3622,7 +3622,7 @@ _osc_arg_get(Termpty *ty, Eina_Unicode **ptr) goto error; } } - if (*b != ';' && *b != BEL) + if (*b != ';' && *b != BEL && *b != 0) { sum = -ESC_ARG_ERROR; goto error; --
