From 6cb2b91ac08a59e8b72f60953a05164d6d0e02fb Mon Sep 17 00:00:00 2001 From: ksherlock Date: Thu, 22 Apr 2021 23:10:55 -0400 Subject: [PATCH] fix answer back string testing with an actual vt100, answer back is a string defined in the setup B screen. It is unrelated to the device attributes. --- Emulators/VT100.mm.ragel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Emulators/VT100.mm.ragel b/Emulators/VT100.mm.ragel index f5b3332..82e0565 100644 --- a/Emulators/VT100.mm.ragel +++ b/Emulators/VT100.mm.ragel @@ -34,7 +34,7 @@ } action answerback { - output->write(ESC "[?1;0c"); + /* no answerback string */ }