Mercurial > emacs
changeset 19142:fffebc19fe53
(x-get-selection): Change default for data-type
back to `STRING'.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 04 Aug 1997 07:46:26 +0000 |
parents | 9e0468e59b5f |
children | 96a5705f73d5 |
files | lisp/select.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/select.el Mon Aug 04 07:03:08 1997 +0000 +++ b/lisp/select.el Mon Aug 04 07:46:26 1997 +0000 @@ -29,9 +29,9 @@ (defun x-get-selection (&optional type data-type) "Return the value of an X Windows selection. The argument TYPE (default `PRIMARY') says which selection, -and the argument DATA-TYPE (default `COMPOUND_TEXT') says +and the argument DATA-TYPE (default `STRING') says how to convert the data." - (x-get-selection-internal (or type 'PRIMARY) (or data-type 'COMPOUND_TEXT))) + (x-get-selection-internal (or type 'PRIMARY) (or data-type 'STRING))) (defun x-get-clipboard () "Return text pasted to the clipboard."