summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRomain Francoise <romain@orebokech.com>2006-11-12 09:55:37 +0000
committerRomain Francoise <romain@orebokech.com>2006-11-12 09:55:37 +0000
commit2f3a0b34d9ea79b25c11acb31edf484df785ea83 (patch)
tree763ee1d25be5100c03894d2764312a537c0321ba
parentbad8f63c54d8b87c4a6df2ad4f5cb2e6b705b4db (diff)
downloademacs-2f3a0b34d9ea79b25c11acb31edf484df785ea83.tar.gz
(selection-coding-system): Fix docstring.
-rw-r--r--src/ChangeLog4
-rw-r--r--src/xselect.c8
2 files changed, 8 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 0af2c11c6c5..90c17b9176c 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
+2006-11-12 Romain Francoise <romain@orebokech.com>
+
+ * xselect.c (selection-coding-system): Fix docstring.
+
2006-11-12 Juanma Barranquero <lekktu@gmail.com>
* category.c (Fchar_category_set): Improve arg/docstring consistency.
diff --git a/src/xselect.c b/src/xselect.c
index 022226946a9..cb76e229e55 100644
--- a/src/xselect.c
+++ b/src/xselect.c
@@ -123,8 +123,8 @@ Lisp_Object QCUT_BUFFER0, QCUT_BUFFER1, QCUT_BUFFER2, QCUT_BUFFER3,
static Lisp_Object Vx_lost_selection_functions;
static Lisp_Object Vx_sent_selection_functions;
-/* Coding system for communicating with other X clients via cutbuffer,
- selection, and clipboard. */
+/* Coding system for communicating with other X clients via selection
+ and clipboard. */
static Lisp_Object Vselection_coding_system;
/* Coding system for the next communicating with other X clients. */
@@ -2975,8 +2975,8 @@ it merely informs you that they have happened. */);
DEFVAR_LISP ("selection-coding-system", &Vselection_coding_system,
doc: /* Coding system for communicating with other X clients.
-When sending or receiving text via cut_buffer, selection, and clipboard,
-the text is encoded or decoded by this coding system.
+When sending or receiving text via selection and clipboard, the text is
+encoded or decoded by this coding system.
The default value is `compound-text-with-extensions'. */);
Vselection_coding_system = intern ("compound-text-with-extensions");