diff options
Diffstat (limited to 'src/w16select.c')
-rw-r--r-- | src/w16select.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/src/w16select.c b/src/w16select.c index 0b39af01574..34ca75c409e 100644 --- a/src/w16select.c +++ b/src/w16select.c @@ -69,13 +69,6 @@ unsigned clipboard_compact (unsigned); Lisp_Object QCLIPBOARD, QPRIMARY; -/* Coding system for communicating with other Windows programs via the - clipboard. */ -static Lisp_Object Vselection_coding_system; - -/* Coding system for the next communicating with other Windows programs. */ -static Lisp_Object Vnext_selection_coding_system; - /* The segment address and the size of the buffer in low memory used to move data between us and WinOldAp module. */ static struct { @@ -693,7 +686,7 @@ syms_of_win16select (void) defsubr (&Sw16_get_clipboard_data); defsubr (&Sx_selection_exists_p); - DEFVAR_LISP ("selection-coding-system", &Vselection_coding_system, + DEFVAR_LISP ("selection-coding-system", Vselection_coding_system, doc: /* Coding system for communicating with other programs. For MS-Windows and MS-DOS: @@ -725,7 +718,7 @@ to control which data-type to request for receiving text. The default value is nil. */); Vselection_coding_system = intern ("iso-latin-1-dos"); - DEFVAR_LISP ("next-selection-coding-system", &Vnext_selection_coding_system, + DEFVAR_LISP ("next-selection-coding-system", Vnext_selection_coding_system, doc: /* Coding system for the next communication with other programs. Usually, `selection-coding-system' is used for communicating with other programs (X Windows clients or MS Windows programs). But, if this |