Mercurial > emacs
changeset 26423:73efdb6af008
(x-set-selection): Call buffer-substring, not
substring. Also fix docstring
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Fri, 12 Nov 1999 13:09:37 +0000 |
parents | f381bc81367b |
children | db29d7e69272 |
files | lisp/select.el |
diffstat | 1 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/select.el Fri Nov 12 13:01:30 1999 +0000 +++ b/lisp/select.el Fri Nov 12 13:09:37 1999 +0000 @@ -51,10 +51,11 @@ 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)))