diff options
author | Glenn Morris <rgm@gnu.org> | 2012-02-11 15:06:46 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-02-11 15:06:46 -0800 |
commit | cfecdf09a009b80395fae21e4ec4beeb7727db53 (patch) | |
tree | 16b25a220adbd9eb2f444c32acf5627588d0d1ca /lisp/select.el | |
parent | 6d216d7f115365eb0e2e423e0b3a55083b4e663d (diff) | |
download | emacs-cfecdf09a009b80395fae21e4ec4beeb7727db53.tar.gz emacs-cfecdf09a009b80395fae21e4ec4beeb7727db53.tar.bz2 emacs-cfecdf09a009b80395fae21e4ec4beeb7727db53.zip |
Update some function declarations
* lisp/select.el (x-get-selection-internal, x-own-selection-internal)
(x-disown-selection-internal):
* lisp/x-dnd.el (x-get-selection-internal): Update declarations.
Diffstat (limited to 'lisp/select.el')
-rw-r--r-- | lisp/select.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/select.el b/lisp/select.el index 8d9d7cc386b..0260eba4682 100644 --- a/lisp/select.el +++ b/lisp/select.el @@ -72,7 +72,7 @@ variable is set, it is used for the next communication only. After the communication, this variable is set to nil.") (declare-function x-get-selection-internal "xselect.c" - (selection-symbol target-type &optional time-stamp)) + (selection-symbol target-type &optional time-stamp terminal)) ;; Only declared obsolete in 23.3. (define-obsolete-function-alias 'x-selection 'x-get-selection "at least 19.34") @@ -118,9 +118,9 @@ in `selection-converter-alist', which see." (x-get-selection-internal 'CLIPBOARD 'STRING)) (declare-function x-own-selection-internal "xselect.c" - (selection-name selection-value)) + (selection-name selection-value &optional frame)) (declare-function x-disown-selection-internal "xselect.c" - (selection &optional time)) + (selection &optional time terminal)) (defun x-set-selection (type data) "Make an X selection of type TYPE and value DATA. |