aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2017-12-22 11:19:56 +0200
committerEli Zaretskii2017-12-22 11:19:56 +0200
commit90ca37feed236a2eb9d61e412dc3805aa8ad8933 (patch)
tree57253333baeeeacff8c64ca55328db73f133dbac
parentd60faf32757ef007c7b5d07a8b248ee4a6f8f83e (diff)
downloademacs-90ca37feed236a2eb9d61e412dc3805aa8ad8933.tar.gz
emacs-90ca37feed236a2eb9d61e412dc3805aa8ad8933.zip
Fix documentation of 'mouse-drag-and-drop-region' and friends
* doc/emacs/frames.texi (Drag and Drop): Index 'mouse-drag-and-drop-region-cut-when-buffers-differ', 'mouse-drag-and-drop-region-show-tooltip', and 'mouse-drag-and-drop-region-show-cursor'. * etc/NEWS: Fix the format of the related entries.
-rw-r--r--doc/emacs/frames.texi3
-rw-r--r--etc/NEWS18
2 files changed, 12 insertions, 9 deletions
diff --git a/doc/emacs/frames.texi b/doc/emacs/frames.texi
index 5a052600ce4..0c994078327 100644
--- a/doc/emacs/frames.texi
+++ b/doc/emacs/frames.texi
@@ -1114,6 +1114,9 @@ names a modifier key, such as @samp{shift}, @samp{control} or
1114will copy it instead of cutting it, even if you drop on the same 1114will copy it instead of cutting it, even if you drop on the same
1115buffer as the one from which the text came. 1115buffer as the one from which the text came.
1116 1116
1117@vindex mouse-drag-and-drop-region-cut-when-buffers-differ
1118@vindex mouse-drag-and-drop-region-show-tooltip
1119@vindex mouse-drag-and-drop-region-show-cursor
1117In order to cut text even when source and destination buffers differ, 1120In order to cut text even when source and destination buffers differ,
1118set the option 1121set the option
1119@code{mouse-drag-and-drop-region-cut-when-buffers-differ} to a 1122@code{mouse-drag-and-drop-region-cut-when-buffers-differ} to a
diff --git a/etc/NEWS b/etc/NEWS
index 7ad852ec715..6e3001f5fa8 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -256,18 +256,18 @@ whether the output buffer of an asynchronous command is shown
256immediately, or only when there is output. 256immediately, or only when there is output.
257 257
258+++ 258+++
259** The new user option 'mouse-select-region-move-to-beginning' 259** New user option 'mouse-select-region-move-to-beginning'.
260controls the position of point when double-clicking mouse-1 on the end 260This option controls the position of point when double-clicking
261of a parenthetical grouping or string-delimiter: the default value nil 261mouse-1 on the end of a parenthetical grouping or string-delimiter:
262keeps point at the end of the region, setting it to non-nil moves 262the default value nil keeps point at the end of the region, setting it
263point to the beginning of the region. 263to non-nil moves point to the beginning of the region.
264 264
265+++ 265+++
266** The new user option 'mouse-drag-and-drop-region' allows to drag the 266** New user option 'mouse-drag-and-drop-region'.
267entire region of text to another place or another buffer. Its 267This option allows to drag the entire region of text to another place
268behavior is customizable via the new options 268or another buffer. Its behavior is customizable via the new options
269'mouse-drag-and-drop-region-cut-when-buffers-differ', 269'mouse-drag-and-drop-region-cut-when-buffers-differ',
270'mouse-drag-and-drop-region-show-tooltip' and 270'mouse-drag-and-drop-region-show-tooltip', and
271'mouse-drag-and-drop-region-show-cursor'. 271'mouse-drag-and-drop-region-show-cursor'.
272 272
273+++ 273+++