From 9a501470aa9adb0a69b21079463252a4f205631d Mon Sep 17 00:00:00 2001 From: Arnout Engelen Date: Sat, 21 May 2016 15:15:19 +0200 Subject: [PATCH] Fix comment for 't' escape sequence --- 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 0daeda4e..e75e3ad4 100644 --- a/src/bin/termptyesc.c +++ b/src/bin/termptyesc.c @@ -1026,7 +1026,7 @@ _handle_esc_csi(Termpty *ty, const Eina_Unicode *c, Eina_Unicode *ce) case 's': // store cursor pos termpty_cursor_copy(ty, EINA_TRUE); break; - case 't': // store cursor pos + case 't': // window manipulation arg = _csi_arg_get(&b); WRN("TODO: window operation %d not supported", arg); break;