aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2005-03-26 01:50:09 +0000
committerRichard M. Stallman2005-03-26 01:50:09 +0000
commit360b756f3cf0d9d647d1cf773859eb5111afcee3 (patch)
treea7de23e19af98a2f4d3f05dc45b12124bc79e937
parent040d9a648e3156e85c71c2389739e9622d6dc37f (diff)
downloademacs-360b756f3cf0d9d647d1cf773859eb5111afcee3.tar.gz
emacs-360b756f3cf0d9d647d1cf773859eb5111afcee3.zip
(Mouse Commands): Document x-mouse-click-focus-ignore-position and
mouse-drag-copy-region.
-rw-r--r--man/frames.texi16
1 files changed, 16 insertions, 0 deletions
diff --git a/man/frames.texi b/man/frames.texi
index edbda679b46..dee29afe050 100644
--- a/man/frames.texi
+++ b/man/frames.texi
@@ -83,6 +83,18 @@ in between the mouse command and @key{DELETE}, it does not do this.
83Move point to where you click (@code{mouse-set-point}). 83Move point to where you click (@code{mouse-set-point}).
84This is normally the left button. 84This is normally the left button.
85 85
86@vindex x-mouse-click-focus-ignore-position
87Normally, Emacs does not distinguish between ordinary mouse clicks and
88clicks that select a frame. When you click on a frame to select it,
89that also changes the selected window and cursor position according to
90the mouse click position. On the X window system, you can change this
91behavior by setting the variable
92@code{x-mouse-click-focus-ignore-position} to @code{t}. Then the
93first click selects the frame, but does not affect the selected window
94or cursor position. If you click again in the same place, since that
95click will be in the selected frame, it will change the window or
96cursor position.
97
86@item Drag-Mouse-1 98@item Drag-Mouse-1
87Set the region to the text you select by dragging, and copy it to the 99Set the region to the text you select by dragging, and copy it to the
88kill ring (@code{mouse-set-region}). You can specify both ends of the 100kill ring (@code{mouse-set-region}). You can specify both ends of the
@@ -96,6 +108,10 @@ entirely on the screen. The number of lines scrolled per step depends
96on how far away from the window edge the mouse has gone; the variable 108on how far away from the window edge the mouse has gone; the variable
97@code{mouse-scroll-min-lines} specifies a minimum step size. 109@code{mouse-scroll-min-lines} specifies a minimum step size.
98 110
111@vindex mouse-drag-copy-region
112If the variable @code{mouse-drag-copy-region} is @code{nil}, this
113mouse command does not copy the selected region into the kill ring.
114
99@item Mouse-2 115@item Mouse-2
100Yank the last killed text, where you click (@code{mouse-yank-at-click}). 116Yank the last killed text, where you click (@code{mouse-yank-at-click}).
101This is normally the middle button. 117This is normally the middle button.