aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2000-11-27 17:24:54 +0000
committerDave Love2000-11-27 17:24:54 +0000
commitd235b2db166a579d0995e11fa634434b29379042 (patch)
tree16f7fc97c23b424e2d8aa94157eb3816b99a58ed
parent4a74d0713e6ddd44d1b54696285458e60e4e33a3 (diff)
downloademacs-d235b2db166a579d0995e11fa634434b29379042.tar.gz
emacs-d235b2db166a579d0995e11fa634434b29379042.zip
(Clipboard): New.
-rw-r--r--man/frames.texi25
1 files changed, 25 insertions, 0 deletions
diff --git a/man/frames.texi b/man/frames.texi
index 0a301a0211f..37933151e8c 100644
--- a/man/frames.texi
+++ b/man/frames.texi
@@ -42,6 +42,7 @@ such support.
42@menu 42@menu
43* Mouse Commands:: Moving, cutting, and pasting, with the mouse. 43* Mouse Commands:: Moving, cutting, and pasting, with the mouse.
44* Secondary Selection:: Cutting without altering point and mark. 44* Secondary Selection:: Cutting without altering point and mark.
45* Clipboard:: Using the clipboard for selections.
45* Mouse References:: Using the mouse to select an item from a list. 46* Mouse References:: Using the mouse to select an item from a list.
46* Menu Mouse Clicks:: Mouse clicks that bring up menus. 47* Menu Mouse Clicks:: Mouse clicks that bring up menus.
47* Mode Line Mouse:: Mouse clicks on the mode line. 48* Mode Line Mouse:: Mouse clicks on the mode line.
@@ -261,6 +262,30 @@ If @code{mouse-yank-at-point} is non-@code{nil}, @kbd{M-Mouse-2}
261yanks at point. Then it does not matter precisely where you click; all 262yanks at point. Then it does not matter precisely where you click; all
262that matters is which window you click on. @xref{Mouse Commands}. 263that matters is which window you click on. @xref{Mouse Commands}.
263 264
265@node Clipboard
266@section Using the Clipboard
267@cindex X clipboard
268@cindex clipboard
269@vindex x-select-enable-clipboard
270@findex menu-bar-enable-clipboard
271@cindex OpenWindows
272@cindex Gnome
273
274As well as the primary and secondary selection types, X supports a
275@dfn{clipboard} selection type which is used by some applications,
276particularly under OpenWindows and Gnome.
277
278The command @kbd{M-x menu-bar-enable-clipboard} makes the @code{Cut},
279@code{Paste} and @code{Copy} menu items, as well as the keys of the same
280names, all use the clipboard.
281
282You can customize the option @code{x-select-enable-clipboard} to make
283the Emacs yank functions consult the clipboard before the primary
284selection, and to make the kill functions to store in the clipboard as
285well as the primary selection. Otherwise they do not access the
286clipboard at all. Using the clipboard is the default on MS-Windows,
287unlike most systems.
288
264@node Mouse References 289@node Mouse References
265@section Following References with the Mouse 290@section Following References with the Mouse
266@kindex Mouse-2 @r{(selection)} 291@kindex Mouse-2 @r{(selection)}