diff options
author | Glenn Morris <rgm@gnu.org> | 2018-02-26 13:35:30 -0500 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2018-02-26 13:35:30 -0500 |
commit | 2ea62d635dd71ddb3368dd743ea9deb2bd68d34d (patch) | |
tree | 0854067a32dc177f8e3d7774b2c5b25a817c8617 /lisp/term | |
parent | 25271a63a01f5cfd7983713fb7a67b21c3c72b1c (diff) | |
download | emacs-2ea62d635dd71ddb3368dd743ea9deb2bd68d34d.tar.gz emacs-2ea62d635dd71ddb3368dd743ea9deb2bd68d34d.tar.bz2 emacs-2ea62d635dd71ddb3368dd743ea9deb2bd68d34d.zip |
Update some lisp function declarations
Diffstat (limited to 'lisp/term')
-rw-r--r-- | lisp/term/w32-win.el | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lisp/term/w32-win.el b/lisp/term/w32-win.el index 28eaeff6056..dc57160d04f 100644 --- a/lisp/term/w32-win.el +++ b/lisp/term/w32-win.el @@ -392,8 +392,12 @@ See the documentation of `create-fontset-from-fontset-spec' for the format.") (declare-function w32-set-clipboard-data "w32select.c" (string &optional ignored)) -(declare-function w32-get-clipboard-data "w32select.c") -(declare-function w32-selection-exists-p "w32select.c") +(declare-function w32-get-clipboard-data "w32select.c" + (&optional ignored)) +(declare-function w32-selection-exists-p "w32select.c" + (&optional selection terminal)) +(declare-function w32-selection-targets "w32select.c" + (&optional selection terminal)) ;;; Fix interface to (X-specific) mouse.el (defun w32--set-selection (type value) |