]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix bug #10783 with w32 doc string of x-selection-exists-p.
authorEli Zaretskii <eliz@gnu.org>
Sat, 11 Feb 2012 09:50:27 +0000 (11:50 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sat, 11 Feb 2012 09:50:27 +0000 (11:50 +0200)
 src/w32select.c (Fx_selection_exists_p): Sync doc string and
 argument list with xselect.c.

src/ChangeLog
src/w32select.c

index a3fc046ddb54a011eb5b58a591333ea958d7d13f..30e8170764202f19209380ee0d82f31b19bd5076 100644 (file)
@@ -1,7 +1,10 @@
 2012-02-11  Eli Zaretskii  <eliz@gnu.org>
 
-       * w16select.c (Fx_selection_exists_p): Sync doc string with
-       xselect.c.  (Bug#10783)
+       * w32select.c (Fx_selection_exists_p): Sync doc string and
+       argument list with xselect.c.  (Bug#10783)
+
+       * w16select.c (Fx_selection_exists_p): Sync doc string and
+       argument list with xselect.c.  (Bug#10783)
 
 2012-02-10  Glenn Morris  <rgm@gnu.org>
 
index c60376b3a9174133254608f6a867d21546c445b4..699c72b71a85761829a7632c6f99dae0389c051f 100644 (file)
@@ -1009,14 +1009,17 @@ DEFUN ("w32-get-clipboard-data", Fw32_get_clipboard_data,
 /* Support checking for a clipboard selection. */
 
 DEFUN ("x-selection-exists-p", Fx_selection_exists_p, Sx_selection_exists_p,
-       0, 1, 0,
-       doc: /* Whether there is an owner for the given X Selection.
-The arg should be the name of the selection in question, typically one of
-the symbols `PRIMARY', `SECONDARY', or `CLIPBOARD'.
-\(Those are literal upper-case symbol names, since that's what X expects.)
-For convenience, the symbol nil is the same as `PRIMARY',
-and t is the same as `SECONDARY'.  */)
-  (Lisp_Object selection)
+       0, 2, 0,
+       doc: /* Whether there is an owner for the given X selection.
+SELECTION should be the name of the selection in question, typically
+one of the symbols `PRIMARY', `SECONDARY', or `CLIPBOARD'.  (X expects
+these literal upper-case names.)  The symbol nil is the same as
+`PRIMARY', and t is the same as `SECONDARY'.
+
+TERMINAL should be a terminal object or a frame specifying the X
+server to query.  If omitted or nil, that stands for the selected
+frame's display, or the first available X display.  */)
+  (Lisp_Object selection, Lisp_Object terminal)
 {
   CHECK_SYMBOL (selection);