diff options
Diffstat (limited to 'lisp/term/w32-win.el')
-rw-r--r-- | lisp/term/w32-win.el | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/term/w32-win.el b/lisp/term/w32-win.el index 063acd7e8bb..bb9a7e481a2 100644 --- a/lisp/term/w32-win.el +++ b/lisp/term/w32-win.el @@ -211,6 +211,8 @@ See the documentation of `create-fontset-from-fontset-spec' for the format.") (defvar dynamic-library-alist) (defvar libpng-version) ; image.c #ifdef HAVE_NTGUI +(defvar libgif-version) +(defvar libjpeg-version) ;;; Set default known names for external libraries (setq dynamic-library-alist @@ -381,12 +383,13 @@ 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") ;;; Fix interface to (X-specific) mouse.el (defun w32--set-selection (type value) (if (eq type 'CLIPBOARD) - (w32-set-clipboard-data text) - (put 'x-selections (or type 'PRIMARY) data))) + (w32-set-clipboard-data value) + (put 'x-selections (or type 'PRIMARY) value))) (defun w32--get-selection (&optional type data-type) (if (and (eq type 'CLIPBOARD) |