billiob pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=f4263d50986df346cd88eb0ed26a30f9e47c992e
commit f4263d50986df346cd88eb0ed26a30f9e47c992e Author: Boris Faure <[email protected]> Date: Mon Nov 7 11:35:50 2016 +0100 termptyesc: add missing break (CID1365404) --- src/bin/termptyesc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/termptyesc.c b/src/bin/termptyesc.c index cc4277c..14fe55d 100644 --- a/src/bin/termptyesc.c +++ b/src/bin/termptyesc.c @@ -366,6 +366,7 @@ _handle_esc_csi_reset_mode(Termpty *ty, Eina_Unicode cc, Eina_Unicode *b) /* clear screen before switching back to normal */ termpty_clear_screen(ty, TERMPTY_CLR_ALL); _switch_to_alternative_screen(ty, mode); + break; case 1048: termpty_cursor_copy(ty, mode); break; --
