aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/xselect.c13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/xselect.c b/src/xselect.c
index 4f6959587fd..3fe109a5b85 100644
--- a/src/xselect.c
+++ b/src/xselect.c
@@ -2975,8 +2975,17 @@ it merely informs you that they have happened. */);
2975 2975
2976 DEFVAR_LISP ("selection-coding-system", &Vselection_coding_system, 2976 DEFVAR_LISP ("selection-coding-system", &Vselection_coding_system,
2977 doc: /* Coding system for communicating with other X clients. 2977 doc: /* Coding system for communicating with other X clients.
2978When sending or receiving text via selection and clipboard, the text is 2978
2979encoded or decoded by this coding system. 2979When sending text via selection and clipboard, if the requested
2980data-type is not "UTF8_STRING", the text is encoded by this coding
2981system.
2982
2983When receiving text, if the data-type of the received text is not
2984"UTF8_STRING", it is decoded by this coding system.
2985
2986See also the documentation of the variable `x-select-request-type' how
2987to control which data-type to request for receiving text.
2988
2980The default value is `compound-text-with-extensions'. */); 2989The default value is `compound-text-with-extensions'. */);
2981 Vselection_coding_system = intern ("compound-text-with-extensions"); 2990 Vselection_coding_system = intern ("compound-text-with-extensions");
2982 2991