From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.bugs Subject: Re: blue marked region appears in other window of C-x 2 Date: Sat, 6 Apr 2002 10:32:00 -0700 (MST) Sender: bug-gnu-emacs-admin@gnu.org Message-ID: <200204061732.g36HW0f19521@aztec.santafe.edu> References: <87pu1ded1o.fsf@tc-1-100.kawasaki.gol.ne.jp> Reply-To: rms@gnu.org NNTP-Posting-Host: localhost.gmane.org X-Trace: main.gmane.org 1018114574 13551 127.0.0.1 (6 Apr 2002 17:36:14 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sat, 6 Apr 2002 17:36:14 +0000 (UTC) Cc: gnu-emacs-bug@moderators.isc.org Original-Received: from fencepost.gnu.org ([199.232.76.164]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 16tu6o-0003WS-00 for ; Sat, 06 Apr 2002 19:36:14 +0200 Original-Received: from localhost ([127.0.0.1] helo=fencepost.gnu.org) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 16tu6j-0008Jj-00; Sat, 06 Apr 2002 12:36:09 -0500 Original-Received: from rutgers.edu ([165.230.4.76] helo=rutgers.rutgers.edu) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 16tu3q-00081g-00 for ; Sat, 06 Apr 2002 12:33:10 -0500 Original-Received: from pele.santafe.edu (pele.santafe.edu [192.12.12.119]) by rutgers.rutgers.edu (8.8.8/8.8.8) with ESMTP id MAA18183 for ; Sat, 6 Apr 2002 12:33:05 -0500 (EST) Original-Received: from aztec.santafe.edu (aztec [192.12.12.49]) by pele.santafe.edu (8.11.6+Sun/8.9.3) with ESMTP id g36HW0a11278; Sat, 6 Apr 2002 10:32:00 -0700 (MST) Original-Received: (from rms@localhost) by aztec.santafe.edu (8.10.2+Sun/8.9.3) id g36HW0f19521; Sat, 6 Apr 2002 10:32:00 -0700 (MST) X-Authentication-Warning: aztec.santafe.edu: rms set sender to rms@aztec using -f Original-To: jidanni@deadspam.com In-Reply-To: <87pu1ded1o.fsf@tc-1-100.kawasaki.gol.ne.jp> (message from Miles Bader on Sat, 06 Apr 2002 03:11:47 GMT) Errors-To: bug-gnu-emacs-admin@gnu.org X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.0.8 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Bug reports for GNU Emacs, the Swiss army knife of text editors List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.bugs:459 X-Report-Spam: http://spam.gmane.org/gmane.emacs.bugs:459 Does this change fix it? *** mouse.el.~1.239.~ Tue Mar 5 17:06:15 2002 --- mouse.el Sat Apr 6 07:36:16 2002 *************** *** 739,745 **** (setq start-point (point)) (let ((range (mouse-start-end start-point start-point click-count))) (move-overlay mouse-drag-overlay (car range) (nth 1 range) ! (window-buffer start-window))) (deactivate-mark) ;; end-of-range is used only in the single-click case. ;; It is the place where the drag has reached so far --- 739,746 ---- (setq start-point (point)) (let ((range (mouse-start-end start-point start-point click-count))) (move-overlay mouse-drag-overlay (car range) (nth 1 range) ! (window-buffer start-window)) ! (overlay-put mouse-drag-overlay 'window (selected-window))) (deactivate-mark) ;; end-of-range is used only in the single-click case. ;; It is the place where the drag has reached so far