From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Stefan Daschek Newsgroups: gmane.emacs.bugs Subject: mouse-sel-mode prevents clipboard from working on windows Date: 11 Feb 2003 17:06:49 +0100 Sender: bug-gnu-emacs-bounces+gnu-bug-gnu-emacs=m.gmane.org@gnu.org Message-ID: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1044980000 4012 80.91.224.249 (11 Feb 2003 16:13:20 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Tue, 11 Feb 2003 16:13:20 +0000 (UTC) Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18id26-00012Y-00 for ; Tue, 11 Feb 2003 17:13:18 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18id48-0004L4-06 for gnu-bug-gnu-emacs@m.gmane.org; Tue, 11 Feb 2003 11:15:24 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 18id3k-0003pS-00 for bug-gnu-emacs@prep.ai.mit.edu; Tue, 11 Feb 2003 11:15:00 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 18id3d-0003gK-00 for bug-gnu-emacs@prep.ai.mit.edu; Tue, 11 Feb 2003 11:14:54 -0500 Original-Received: from chx400.switch.ch ([130.59.10.2]) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18id3d-0003MD-00 for bug-gnu-emacs@prep.ai.mit.edu; Tue, 11 Feb 2003 11:14:53 -0500 Original-Received: from mail.fu-berlin.de ([160.45.11.165]) by chx400.switch.ch with esmtp (Exim 3.20 #1) id 18id3O-0006h5-00 for gnu-emacs-bug@moderators.isc.org; Tue, 11 Feb 2003 17:14:38 +0100 Original-Received: by mail.fu-berlin.de (Smail3.2.0.98) from Curry.ZEDAT.FU-Berlin.DE (160.45.10.36) with esmtp id ; Tue, 11 Feb 2003 17:14:38 +0100 (MET) Original-Received: by Curry.ZEDAT.FU-Berlin.DE (Smail3.2.0.98) from news.fu-berlin.de with bsmtp id ; Tue, 11 Feb 2003 17:14:37 +0100 (MET) Original-To: gnu-emacs-bug@moderators.isc.org Original-Path: noniq.noniq.AT!not-for-mail Original-Newsgroups: gnu.emacs.bug Original-Lines: 32 X-Orig-NNTP-Posting-Host: noniq.noniq.at (217.19.37.174) X-Orig-X-Trace: fu-berlin.de 1044980077 43963540 217.19.37.174 (16 [94277]) X-Orig-Path: 217.19.37.174!nobody User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Bug reports for GNU Emacs, the Swiss army knife of text editors List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: bug-gnu-emacs-bounces+gnu-bug-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.bugs:4429 X-Report-Spam: http://spam.gmane.org/gmane.emacs.bugs:4429 I'm using "GNU Emacs 21.2.1 (i386-msvc-nt5.0.2195) of 2002-03-19 on buffy" on ms windows 2000. After activating mouse-sel-mode I can no longer paste text copied from other applications into emacs. Steps to reproduce: * emacs --no-site-file -q * select and copy some text in any other application * paste it into emacs -> works * M-x mouse-sel-mode * select and copy some more text from any other application * try to paste it into emacs -> does not work (instead, the same text is inserted as for the first paste). I have found the following workaround: (let ((paste interprogram-paste-function) (cut interprogram-cut-function)) (mouse-sel-mode) (setq interprogram-paste-function paste interprogram-cut-function cut))) However I think that this is a bug that should be fixed in mouse-sel-mode.el. sincerely, stefan