From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2155) id 06015386EC42; Sun, 31 May 2020 08:39:26 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 06015386EC42 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Corinna Vinschen To: cygwin-cvs@sourceware.org Subject: [newlib-cygwin] Cygwin: pty: Clean up fhandler_pty_master::pty_master_fwd_thread(). X-Act-Checkin: newlib-cygwin X-Git-Author: Takashi Yano via Cygwin-patches X-Git-Refname: refs/heads/master X-Git-Oldrev: 4527541ec66af8d82bb9dba5d25afdf489d71271 X-Git-Newrev: ac1f63ef2812093ce0e053dd505b44c55c3d47d6 Message-Id: <20200531083926.06015386EC42@sourceware.org> Date: Sun, 31 May 2020 08:39:26 +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: Sun, 31 May 2020 08:39:26 -0000 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=ac1f63ef2812093ce0e053dd505b44c55c3d47d6 commit ac1f63ef2812093ce0e053dd505b44c55c3d47d6 Author: Takashi Yano via Cygwin-patches Date: Sun May 31 14:53:19 2020 +0900 Cygwin: pty: Clean up fhandler_pty_master::pty_master_fwd_thread(). - Remove the code which is not necessary anymore. Diff: --- winsup/cygwin/fhandler_tty.cc | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/winsup/cygwin/fhandler_tty.cc b/winsup/cygwin/fhandler_tty.cc index d017cde38..c3d49968d 100644 --- a/winsup/cygwin/fhandler_tty.cc +++ b/winsup/cygwin/fhandler_tty.cc @@ -3324,24 +3324,6 @@ fhandler_pty_master::pty_master_fwd_thread () continue; } - /* Remove ESC sequence which returns results to console - input buffer. Without this, cursor position report - is put into the input buffer as a garbage. */ - /* Remove ESC sequence to report cursor position. */ - char *p0; - while ((p0 = (char *) memmem (outbuf, rlen, "\033[6n", 4))) - { - memmove (p0, p0+4, rlen - (p0+4 - outbuf)); - rlen -= 4; - } - /* Remove ESC sequence to report terminal identity. */ - while ((p0 = (char *) memmem (outbuf, rlen, "\033[0c", 4))) - { - memmove (p0, p0+4, rlen - (p0+4 - outbuf)); - rlen -= 4; - } - wlen = rlen; - size_t nlen; char *buf = convert_mb_str (get_ttyp ()->term_code_page, &nlen, CP_UTF8, ptr, wlen);