From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: mouse-drag-and-drop-region Date: Fri, 22 Dec 2017 11:25:52 +0200 Message-ID: <83k1xfm7vj.fsf@gnu.org> References: <5A34EA72.5050901@gmx.at> <20171217.134052.368622989952202463.tkk@misasa.okayama-u.ac.jp> <5A364A88.8050201@gmx.at> <20171221.103646.1935815206266984669.tkk@misasa.okayama-u.ac.jp> Reply-To: Eli Zaretskii NNTP-Posting-Host: blaine.gmane.org X-Trace: blaine.gmane.org 1513934695 11242 195.159.176.226 (22 Dec 2017 09:24:55 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Fri, 22 Dec 2017 09:24:55 +0000 (UTC) Cc: rudalics@gmx.at, rswgnu@gmail.com, agrambot@gmail.com, emacs-devel@gnu.org To: Tak Kunihiro Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Dec 22 10:24:50 2017 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eSJZP-0002QF-BZ for ged-emacs-devel@m.gmane.org; Fri, 22 Dec 2017 10:24:47 +0100 Original-Received: from localhost ([::1]:41508 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eSJbN-000569-QI for ged-emacs-devel@m.gmane.org; Fri, 22 Dec 2017 04:26:49 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:50584) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eSJaY-00055n-Oe for emacs-devel@gnu.org; Fri, 22 Dec 2017 04:25:59 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eSJaV-0008UP-FI for emacs-devel@gnu.org; Fri, 22 Dec 2017 04:25:58 -0500 Original-Received: from fencepost.gnu.org ([2001:4830:134:3::e]:39701) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eSJaV-0008UK-C7; Fri, 22 Dec 2017 04:25:55 -0500 Original-Received: from [176.228.60.248] (port=1774 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1eSJaU-0002PB-PZ; Fri, 22 Dec 2017 04:25:55 -0500 In-reply-to: <20171221.103646.1935815206266984669.tkk@misasa.okayama-u.ac.jp> (message from Tak Kunihiro on Thu, 21 Dec 2017 10:36:46 +0900 (JST)) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:221329 Archived-At: > Date: Thu, 21 Dec 2017 10:36:46 +0900 (JST) > Cc: eliz@gnu.org, rswgnu@gmail.com, agrambot@gmail.com, > emacs-devel@gnu.org, tkk@misasa.okayama-u.ac.jp > From: Tak Kunihiro > > diff --git a/doc/emacs/frames.texi b/doc/emacs/frames.texi > index c94d690cf7..110199304e 100644 > --- a/doc/emacs/frames.texi > +++ b/doc/emacs/frames.texi > @@ -1106,6 +1106,14 @@ then pressing that modifier key when dropping the text will copy it > instead of cutting it, even if you drop on the same buffer as the one > from which the text came. > > +If you want to cut text even when source and destination buffers > +differ, set variable > +@code{mouse-drag-and-drop-region-cut-when-buffers-differ} to non-nil. > +If you do not want to see selected text in a tooltip in a graphic > +display and/or move point together with the mouse cursor during > +dragging, set @code{mouse-drag-and-drop-region-show-tooltip} and/or > +@code{mouse-drag-and-drop-region-show-cursor} to nil. > + > @vindex dnd-open-file-other-window > Dropping a file normally visits it in the window you drop it on. If > you prefer to visit the file in a new window in such cases, customize Thanks. When you describe in the manual functions or variables that were never described before, please always add index entries for them, using @findex or @vindex as appropriate. (I did it this time.) We want all the functions/variables mentioned in the manual to be indexed, so that their description could be easily found by users. Also, some documentation-related Emacs features rely on them being indexed, and will fail if they aren't.