From 5ef55a7f524361a94270b13ff86e5f5a04226e45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sun, 12 Jan 2020 12:02:39 +0100 Subject: [PATCH] dcs: abort() in bsu/esu I **really** want to know if someone is using these... --- dcs.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dcs.c b/dcs.c index 3191febe..40d9a8b0 100644 --- a/dcs.c +++ b/dcs.c @@ -10,6 +10,7 @@ bsu(struct terminal *term) { LOG_WARN("unimplemented: BSU - Begin Synchronized Update (params: %.*s)", (int)term->vt.dcs.idx, term->vt.dcs.data); + abort(); } static void @@ -17,6 +18,7 @@ esu(struct terminal *term) { LOG_WARN("unimplemented: ESU - Begin Synchronized Update (params: %.*s)", (int)term->vt.dcs.idx, term->vt.dcs.data); + abort(); } void