summaryrefslogtreecommitdiff
path: root/lisp/select.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-08-04 07:46:26 +0000
committerRichard M. Stallman <rms@gnu.org>1997-08-04 07:46:26 +0000
commit16fb13f635329c3cd36a4387e112a0848d551b84 (patch)
treecd61fd83639849364fcae0e4484573047cf38dcc /lisp/select.el
parent325f0ce14abeffc963f1843e468e325068c7c72e (diff)
downloademacs-16fb13f635329c3cd36a4387e112a0848d551b84.tar.gz
(x-get-selection): Change default for data-type
back to `STRING'.
Diffstat (limited to 'lisp/select.el')
-rw-r--r--lisp/select.el4
1 files changed, 2 insertions, 2 deletions
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."