From 69a8340d21413c413cbfcb45b13827ff4969937d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Javier=20Merino=20Mor=C3=A1n?= Date: Wed, 1 Jun 2022 22:53:43 +0200 Subject: [PATCH] Remove obsolete comment In the new parser, processSessionAttributeRequest() only gets the command string, and no longer gets the OSC introducer. --- src/Vt102Emulation.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Vt102Emulation.cpp b/src/Vt102Emulation.cpp index 182b1e6e..a0a8a42f 100644 --- a/src/Vt102Emulation.cpp +++ b/src/Vt102Emulation.cpp @@ -1021,7 +1021,6 @@ void Vt102Emulation::processSessionAttributeRequest(const int tokenSize, const u int i; /* clang-format off */ - // skip first two characters (ESC, ']') for (i = 0; i < tokenSize && tokenBuffer[i] >= '0' && tokenBuffer[i] <= '9'; i++)