]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix doc of `gui-get-selection' as to what is really valid as `data'
authorPo Lu <luangruo@yahoo.com>
Mon, 28 Mar 2022 12:34:03 +0000 (20:34 +0800)
committerPo Lu <luangruo@yahoo.com>
Mon, 28 Mar 2022 12:35:16 +0000 (20:35 +0800)
* doc/lispref/frames.texi (Window System Selections):
* lisp/select.el (gui-set-selection): Don't say `data' can be a
cons or list of two integers, since that's not supported.

doc/lispref/frames.texi
lisp/select.el

index 90924cf47b5eedc16f05f00af04a6970dc0b004b..ebf426fe501c8a5c180bf6871514cd34b5582218 100644 (file)
@@ -3918,11 +3918,11 @@ upper-case names, in accord with X Window System conventions.  If
 @var{type} is @code{nil}, that stands for @code{PRIMARY}.
 
 If @var{data} is @code{nil}, it means to clear out the selection.
-Otherwise, @var{data} may be a string, a symbol, an integer (or a cons
-of two integers or list of two integers), an overlay, or a cons of two
-markers pointing to the same buffer.  An overlay or a pair of markers
-stands for text in the overlay or between the markers.  The argument
-@var{data} may also be a vector of valid non-vector selection values.
+Otherwise, @var{data} may be a string, a symbol, an integer, an
+overlay, or a cons of two markers pointing to the same buffer.  An
+overlay or a pair of markers stands for text in the overlay or between
+the markers.  The argument @var{data} may also be a vector of valid
+non-vector selection values.
 
 This function returns @var{data}.
 @end deffn
index 90970f989a8f2cbacf75e12ad07bf53ac08c9be3..7b9475a64021c199ddbdeb462e42d398c4c62988 100644 (file)
@@ -350,10 +350,10 @@ the formats available in the clipboard if TYPE is `CLIPBOARD'."
 (defun gui-set-selection (type data)
   "Make an X selection of type TYPE and value DATA.
 The argument TYPE (nil means `PRIMARY') says which selection, and
-DATA specifies the contents.  TYPE must be a symbol.  \(It can also
-be a string, which stands for the symbol with that name, but this
-is considered obsolete.)  DATA may be a string, a symbol, an
-integer (or a cons of two integers or list of two integers).
+DATA specifies the contents.  TYPE must be a symbol.  \(It can
+also be a string, which stands for the symbol with that name, but
+this is considered obsolete.)  DATA may be a string, a symbol, or
+an integer.
 
 The selection may also be a cons of two markers pointing to the same buffer,
 or an overlay.  In these cases, the selection is considered to be the text