Mercurial > emacs
diff lisp/select.el @ 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 | f1932b36f01d |
| children | 73efdb6af008 |
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."
