From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: David De La Harpe Golden Newsgroups: gmane.emacs.devel Subject: Re: Selection changes in revno 100822 Date: Sun, 15 Aug 2010 22:42:56 +0100 Message-ID: <4C685F60.5080005@harpegolden.net> References: <834oeyv3ww.fsf@gnu.org> <87mxsqyp98.fsf@stupidchicken.com> <83zkwptyij.fsf@gnu.org> <4C66660D.3090603@swipnet.se> <83sk2htp82.fsf@gnu.org> <4C66A8C5.4040203@harpegolden.net> <83hbixte8c.fsf@gnu.org> <87wrrs276x.fsf@stupidchicken.com> <8339ugu7vt.fsf@gnu.org> <87lj881xzf.fsf@catnip.gol.com> <871va0rmzp.fsf@uwakimon.sk.tsukuba.ac.jp> <4C682389.8030807@harpegolden.net> <83vd7bsqn6.fsf@gnu.org> <4C6844FF.80602@harpegolden.net> <83pqxjsk6m.fsf@gnu.org> <4C6850C3.2030508@harpegolden.net> <83ocd3shp1.fsf@gnu.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1281908593 29311 80.91.229.12 (15 Aug 2010 21:43:13 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sun, 15 Aug 2010 21:43:13 +0000 (UTC) Cc: stephen@xemacs.org, miles@gnu.org, emacs-devel@gnu.org To: Eli Zaretskii Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Aug 15 23:43:11 2010 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Okkyz-0003wR-3G for ged-emacs-devel@m.gmane.org; Sun, 15 Aug 2010 23:43:09 +0200 Original-Received: from localhost ([127.0.0.1]:35149 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Okkyy-0003ge-Kf for ged-emacs-devel@m.gmane.org; Sun, 15 Aug 2010 17:43:08 -0400 Original-Received: from [140.186.70.92] (port=51436 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Okkys-0003f4-7Q for emacs-devel@gnu.org; Sun, 15 Aug 2010 17:43:03 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1Okkyr-0005mJ-0j for emacs-devel@gnu.org; Sun, 15 Aug 2010 17:43:01 -0400 Original-Received: from harpegolden.net ([65.99.215.13]:56548) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Okkyp-0005m1-Mg; Sun, 15 Aug 2010 17:42:59 -0400 Original-Received: from [87.198.55.170] (87-198-55-170.ptr.magnet.ie [87.198.55.170]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "David De La Harpe Golden", Issuer "David De La Harpe Golden Personal CA rev 3" (verified OK)) by harpegolden.net (Postfix) with ESMTPSA id A8A6F683AB; Sun, 15 Aug 2010 22:42:54 +0100 (IST) User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.10) Gecko/20100620 Icedove/3.0.5 In-Reply-To: <83ocd3shp1.fsf@gnu.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:128760 Archived-At: On 15/08/10 22:13, Eli Zaretskii wrote: >>> What happens on X when you type >>> C-y after mouse-2? >> >> You get a clipboard/kill-ring yank. > > That's identical to what you get on w32 with my change. Um. Copy some text in notepad.exe, then hit mouse-2 in emacs.exe, then C-y, hopefully you'll see the problem. Or maybe you'll decide it's a feature. e.g. "I am a fish" select it then M-w copy in emacs "hello there" select it then C-c copy in notepad mouse-2 in emacs => "hello there" inserted in emacs (inserting the current w32 clipboard) C-y in emacs => "I am a fish" inserted in emacs (not inserting the current w32 clipboard but rather the head of emacs kill ring. I would have expected the current w32 clipboard, as an x11 user). C-v in notepad => "hello there" inserted in notepad (inserting the current w32 clipboard) *** Then there's: "I am a duck" select it in emacs "goodbye then" C-c copy in notepad mouse-2 in emacs => "goodbye then" inserted in emacs (inserting the current w32 clipboard) mouse-2 in emacs => "I am a duck" inserted in emacs (inserting the emacs emulated primary selection) C-v in notepad => "goodbye then" inserted in notepad (inserting the current w32 clipboard)