From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Spencer Baugh Newsgroups: gmane.emacs.bugs Subject: bug#64423: 29.0.92; save-interprogram-paste-before-kill doesn't prevent streaming large selections Date: Thu, 03 Aug 2023 11:53:30 -0400 Message-ID: References: <875y72ieq8.fsf@catern.com> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="28349"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Cc: 64423@debbugs.gnu.org To: sbaugh@catern.com Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Thu Aug 03 17:54:45 2023 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1qRaey-0007B6-PR for geb-bug-gnu-emacs@m.gmane-mx.org; Thu, 03 Aug 2023 17:54:44 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1qRaeJ-0004XC-Mm; Thu, 03 Aug 2023 11:54:03 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qRaeI-0004Ww-AA for bug-gnu-emacs@gnu.org; Thu, 03 Aug 2023 11:54:02 -0400 Original-Received: from debbugs.gnu.org ([2001:470:142:5::43]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1qRaeI-00042q-1j for bug-gnu-emacs@gnu.org; Thu, 03 Aug 2023 11:54:02 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1qRaeH-0001JY-MY for bug-gnu-emacs@gnu.org; Thu, 03 Aug 2023 11:54:01 -0400 X-Loop: help-debbugs@gnu.org Resent-From: Spencer Baugh Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Thu, 03 Aug 2023 15:54:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 64423 X-GNU-PR-Package: emacs Original-Received: via spool by 64423-submit@debbugs.gnu.org id=B64423.16910780185025 (code B ref 64423); Thu, 03 Aug 2023 15:54:01 +0000 Original-Received: (at 64423) by debbugs.gnu.org; 3 Aug 2023 15:53:38 +0000 Original-Received: from localhost ([127.0.0.1]:52759 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qRadu-0001Iy-HM for submit@debbugs.gnu.org; Thu, 03 Aug 2023 11:53:38 -0400 Original-Received: from mxout6.mail.janestreet.com ([64.215.233.21]:54191) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qRadt-0001Ij-Gv for 64423@debbugs.gnu.org; Thu, 03 Aug 2023 11:53:37 -0400 In-Reply-To: <875y72ieq8.fsf@catern.com> (sbaugh@catern.com's message of "Sun, 02 Jul 2023 14:13:04 +0000 (UTC)") X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: bug-gnu-emacs@gnu.org List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.bugs:266596 Archived-At: FYI, just for completeness and to help future users, I managed to track down the original source of this "large selection" for me, which was causing gui-get-selection to hang. It's this bug in xrdp when an image is copied: https://github.com/neutrinolabs/xrdp/issues/2763 This actually is just a hang with no data, not a large selection. So in the end, preventing the streaming of large selections wouldn't have helped. The patch that we did end up applying, to ignore quit in gui-get-selection in kill-new, works great at mitigating this xrdp bug though.