From: Richard M. Stallman Date: Mon, 4 Aug 1997 07:46:26 +0000 (+0000) Subject: (x-get-selection): Change default for data-type X-Git-Tag: emacs-20.1~804 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4029fd9a3fe0aa75d625de8cd21a74fca5704d73;p=emacs.git (x-get-selection): Change default for data-type back to `STRING'. --- diff --git a/lisp/select.el b/lisp/select.el index b953743fd8b..3933efdd1a8 100644 --- a/lisp/select.el +++ b/lisp/select.el @@ -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."