diff options
| author | Kenichi Handa | 2007-03-06 06:11:01 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2007-03-06 06:11:01 +0000 |
| commit | 99c9e94c87acbf3cd86e4e6dabd6ccb1475482f7 (patch) | |
| tree | 1b7ef15cab63dc4d5c475980f0e2ecd64b5ad954 /src | |
| parent | a28a315a558b6a37cee6cf89bf718acfc23ba5c8 (diff) | |
| download | emacs-99c9e94c87acbf3cd86e4e6dabd6ccb1475482f7.tar.gz emacs-99c9e94c87acbf3cd86e4e6dabd6ccb1475482f7.zip | |
(Vselection_coding_system): Documentation improved.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xselect.c | 13 |
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. |
| 2978 | When sending or receiving text via selection and clipboard, the text is | 2978 | |
| 2979 | encoded or decoded by this coding system. | 2979 | When sending text via selection and clipboard, if the requested |
| 2980 | data-type is not "UTF8_STRING", the text is encoded by this coding | ||
| 2981 | system. | ||
| 2982 | |||
| 2983 | When receiving text, if the data-type of the received text is not | ||
| 2984 | "UTF8_STRING", it is decoded by this coding system. | ||
| 2985 | |||
| 2986 | See also the documentation of the variable `x-select-request-type' how | ||
| 2987 | to control which data-type to request for receiving text. | ||
| 2988 | |||
| 2980 | The default value is `compound-text-with-extensions'. */); | 2989 | The 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 | ||