From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7868) id 639D83858D28; Thu, 2 Dec 2021 08:46:09 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 639D83858D28 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Takashi Yano To: cygwin-cvs@sourceware.org Subject: [newlib-cygwin/cygwin-3_3-branch] Cygwin: console: Fix OSC sequence handling. X-Act-Checkin: newlib-cygwin X-Git-Author: Takashi Yano X-Git-Refname: refs/heads/cygwin-3_3-branch X-Git-Oldrev: 362598b118e93b8f1e14df2789a063d3371c55dc X-Git-Newrev: 5cc4b92c25af1af9250e4498e60943fcc82b7487 Message-Id: <20211202084609.639D83858D28@sourceware.org> Date: Thu, 2 Dec 2021 08:46:09 +0000 (GMT) X-BeenThere: cygwin-cvs@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Cygwin core component git logs List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Dec 2021 08:46:09 -0000 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=5cc4b92c25af1af9250e4498e60943fcc82b7487 commit 5cc4b92c25af1af9250e4498e60943fcc82b7487 Author: Takashi Yano Date: Thu Dec 2 12:35:47 2021 +0900 Cygwin: console: Fix OSC sequence handling. - Currently, some OSC escape sequences, such as 'OSC 110 BEL', are not handled correctly. This patch fixes the issue. Diff: --- winsup/cygwin/fhandler_console.cc | 31 ++++++++++++++++++++++++------- 1 file changed, 24 insertions(+), 7 deletions(-) diff --git a/winsup/cygwin/fhandler_console.cc b/winsup/cygwin/fhandler_console.cc index 4b7922dea..68567f9a8 100644 --- a/winsup/cygwin/fhandler_console.cc +++ b/winsup/cygwin/fhandler_console.cc @@ -3308,13 +3308,30 @@ fhandler_console::write (const void *vsrc, size_t len) case gotrsquare: if (isdigit (*src)) con.rarg = con.rarg * 10 + (*src - '0'); - else if (*src == ';' && (con.rarg == 2 || con.rarg == 0)) - con.state = gettitle; - else if (*src == ';' && (con.rarg == 4 || con.rarg == 104 - || (con.rarg >= 10 && con.rarg <= 19))) - con.state = eatpalette; - else - con.state = eattitle; + else if (*src == ';') + { + if (con.rarg == 0 || con.rarg == 2) + con.state = gettitle; + else if ((con.rarg >= 4 && con.rarg <= 6) + || (con.rarg >=10 && con.rarg <= 19) + || (con.rarg >=104 && con.rarg <= 106) + || (con.rarg >=110 && con.rarg <= 119)) + con.state = eatpalette; + else + con.state = eattitle; + } + else if (*src == '\033') + con.state = endpalette; + else if (*src == '\007') + { + wpbuf.put (*src); + if (wincap.has_con_24bit_colors () && !con_is_legacy) + wpbuf.send (get_output_handle ()); + wpbuf.empty (); + con.state = normal; + src++; + break; + } wpbuf.put (*src); src++; break;