(x-set-selection): Call buffer-substring, not
authorGerd Moellmann <gerd@gnu.org>
Fri, 12 Nov 1999 13:09:37 +0000 (13:09 +0000)
committerGerd Moellmann <gerd@gnu.org>
Fri, 12 Nov 1999 13:09:37 +0000 (13:09 +0000)
substring.  Also fix docstring

lisp/select.el

index 3933efd..b27287e 100644 (file)
@@ -51,10 +51,11 @@ can alter the effective value of the selection.
 
 The data may also be a vector of valid non-vector selection values.
 
-Interactively, the text of the region is used as the selection value."
+Interactively, the text of the region is used as the selection value
+if the prefix arg is set."
   (interactive (if (not current-prefix-arg)
                   (list 'PRIMARY (read-string "Set text for pasting: "))
-                (list 'PRIMARY (substring (region-beginning) (region-end)))))
+                (list 'PRIMARY (buffer-substring (region-beginning) (region-end)))))
   ;; This is for temporary compatibility with pre-release Emacs 19.
   (if (stringp type)
       (setq type (intern type)))