diff options
Diffstat (limited to 'src/w32select.c')
-rw-r--r-- | src/w32select.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/src/w32select.c b/src/w32select.c index 369f49ebbeb..c323e34fa57 100644 --- a/src/w32select.c +++ b/src/w32select.c @@ -111,13 +111,6 @@ static void setup_windows_coding_system (Lisp_Object coding_system, PRIMARY and SECONDARY. */ Lisp_Object QCLIPBOARD; -/* Coding system for communicating with other programs via the - clipboard. */ -static Lisp_Object Vselection_coding_system; - -/* Coding system for the next communication with other programs. */ -static Lisp_Object Vnext_selection_coding_system; - /* Internal pseudo-constants, initialized in globals_of_w32select() based on current system parameters. */ static LCID DEFAULT_LCID; @@ -1068,7 +1061,7 @@ syms_of_w32select (void) defsubr (&Sw32_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: @@ -1102,7 +1095,7 @@ The default value is nil. */); below. */ Vselection_coding_system = Qnil; - 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 |