From 060a068a3c86b79aa662e916396ee71cfec99781 Mon Sep 17 00:00:00 2001 From: Per Bothner Date: Thu, 6 Jun 2019 19:42:34 -0700 Subject: [PATCH] Fix comment for is_single_byte_escape_seq. --- src/screen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/screen.cpp b/src/screen.cpp index 180e2f228..5c783c52a 100644 --- a/src/screen.cpp +++ b/src/screen.cpp @@ -135,7 +135,7 @@ static bool is_osc_escape_seq(const wchar_t *code, size_t *resulting_length) { return found; } -/// Generic VT100 one byte sequence: CSI followed by something in the range @ through _. +/// Generic VT100 three byte sequence: CSI followed by something in the range @ through _. static bool is_single_byte_escape_seq(const wchar_t *code, size_t *resulting_length) { bool found = false; if (code[1] == L'[' && (code[2] >= L'@' && code[2] <= L'_')) {