From: Eli Zaretskii Date: Fri, 24 Jul 2009 16:32:23 +0000 (+0000) Subject: (x-set-selection): Doc fix. X-Git-Tag: emacs-23.1~18 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=446b78fbf4c85420e68532bb02143033ef2092e1;p=emacs.git (x-set-selection): Doc fix. --- diff --git a/lisp/select.el b/lisp/select.el index 979189997c3..dad6d6e961f 100644 --- a/lisp/select.el +++ b/lisp/select.el @@ -134,7 +134,10 @@ The return value is DATA. Interactively, this command sets the primary selection. Without prefix argument, it reads the selection in the minibuffer. With -prefix argument, it uses the text of the region as the selection value ." +prefix argument, it uses the text of the region as the selection value. + +Note that on MS-Windows, primary and secondary selections set by Emacs +are not available to other programs." (interactive (if (not current-prefix-arg) (list 'PRIMARY (read-string "Set text for pasting: ")) (list 'PRIMARY (buffer-substring (region-beginning) (region-end)))))