From d9bd1ef2d457220fb4237729b752b7738debcd61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sun, 12 Jan 2020 12:49:42 +0100 Subject: [PATCH] dcs: bsu/esu: add link to spec --- dcs.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dcs.c b/dcs.c index 3f412507..1b33c41e 100644 --- a/dcs.c +++ b/dcs.c @@ -8,6 +8,8 @@ static void bsu(struct terminal *term) { + /* https://gitlab.com/gnachman/iterm2/-/wikis/synchronized-updates-spec */ + LOG_WARN("untested: BSU - Begin Synchronized Update (params: %.*s)", (int)term->vt.dcs.idx, term->vt.dcs.data); @@ -18,6 +20,8 @@ bsu(struct terminal *term) static void esu(struct terminal *term) { + /* https://gitlab.com/gnachman/iterm2/-/wikis/synchronized-updates-spec */ + LOG_WARN("untested: ESU - Begin Synchronized Update (params: %.*s)", (int)term->vt.dcs.idx, term->vt.dcs.data);