Mercurial > emacs
comparison src/xselect.c @ 73931:05ce1bcd673e
(selection-coding-system): Fix docstring.
author | Romain Francoise <romain@orebokech.com> |
---|---|
date | Sun, 12 Nov 2006 09:55:37 +0000 |
parents | 842c20ea5853 |
children | 8eceefbbcde7 dbe3f29e61d6 |
comparison
equal
deleted
inserted
replaced
73930:d9a0e4ac80a3 | 73931:05ce1bcd673e |
---|---|
121 QCUT_BUFFER4, QCUT_BUFFER5, QCUT_BUFFER6, QCUT_BUFFER7; | 121 QCUT_BUFFER4, QCUT_BUFFER5, QCUT_BUFFER6, QCUT_BUFFER7; |
122 #endif | 122 #endif |
123 | 123 |
124 static Lisp_Object Vx_lost_selection_functions; | 124 static Lisp_Object Vx_lost_selection_functions; |
125 static Lisp_Object Vx_sent_selection_functions; | 125 static Lisp_Object Vx_sent_selection_functions; |
126 /* Coding system for communicating with other X clients via cutbuffer, | 126 /* Coding system for communicating with other X clients via selection |
127 selection, and clipboard. */ | 127 and clipboard. */ |
128 static Lisp_Object Vselection_coding_system; | 128 static Lisp_Object Vselection_coding_system; |
129 | 129 |
130 /* Coding system for the next communicating with other X clients. */ | 130 /* Coding system for the next communicating with other X clients. */ |
131 static Lisp_Object Vnext_selection_coding_system; | 131 static Lisp_Object Vnext_selection_coding_system; |
132 | 132 |
2973 it merely informs you that they have happened. */); | 2973 it merely informs you that they have happened. */); |
2974 Vx_sent_selection_functions = Qnil; | 2974 Vx_sent_selection_functions = Qnil; |
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 cut_buffer, selection, and clipboard, | 2978 When sending or receiving text via selection and clipboard, the text is |
2979 the text is encoded or decoded by this coding system. | 2979 encoded or decoded by this coding system. |
2980 The default value is `compound-text-with-extensions'. */); | 2980 The default value is `compound-text-with-extensions'. */); |
2981 Vselection_coding_system = intern ("compound-text-with-extensions"); | 2981 Vselection_coding_system = intern ("compound-text-with-extensions"); |
2982 | 2982 |
2983 DEFVAR_LISP ("next-selection-coding-system", &Vnext_selection_coding_system, | 2983 DEFVAR_LISP ("next-selection-coding-system", &Vnext_selection_coding_system, |
2984 doc: /* Coding system for the next communication with other X clients. | 2984 doc: /* Coding system for the next communication with other X clients. |