summaryrefslogtreecommitdiff
path: root/src/xselect.c
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2002-02-26 16:37:15 +0000
committerEli Zaretskii <eliz@gnu.org>2002-02-26 16:37:15 +0000
commit5a79ea57c6b49ae7190a25613399a0cdd4c8bd34 (patch)
treea5a21e340bf0657bbb685c0de9b9987dacee7fb0 /src/xselect.c
parent5dde3c716fd5a30910fbfe3819d18e39d9279564 (diff)
downloademacs-5a79ea57c6b49ae7190a25613399a0cdd4c8bd34.tar.gz
(Qcompound_text_with_extensions): Renamed from Qcompound_text_no_extensions.
(lisp_data_to_selection_data, syms_of_xselect): Use the new name.
Diffstat (limited to 'src/xselect.c')
-rw-r--r--src/xselect.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/xselect.c b/src/xselect.c
index 06c0ec6362c..d21a978060f 100644
--- a/src/xselect.c
+++ b/src/xselect.c
@@ -97,7 +97,7 @@ Lisp_Object QPRIMARY, QSECONDARY, QSTRING, QINTEGER, QCLIPBOARD, QTIMESTAMP,
Lisp_Object QCOMPOUND_TEXT; /* This is a type of selection. */
-Lisp_Object Qcompound_text_no_extensions;
+Lisp_Object Qcompound_text_with_extensions;
#ifdef CUT_BUFFER_SUPPORT
Lisp_Object QCUT_BUFFER0, QCUT_BUFFER1, QCUT_BUFFER2, QCUT_BUFFER3,
@@ -1766,7 +1766,7 @@ lisp_data_to_selection_data (display, obj,
(int *) size_ret, &stringp);
*nofree_ret = (*data_ret == XSTRING (obj)->data);
if (EQ (Vnext_selection_coding_system,
- Qcompound_text_no_extensions))
+ Qcompound_text_with_extensions))
type = QCOMPOUND_TEXT;
else if (NILP (type))
type = (stringp ? QSTRING : QCOMPOUND_TEXT);
@@ -2400,8 +2400,8 @@ it merely informs you that they have happened. */);
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.
-The default value is `compound-text'. */);
- Vselection_coding_system = intern ("compound-text");
+The default value is `compound-text-with-extensions'. */);
+ Vselection_coding_system = intern ("compound-text-with-extensions");
DEFVAR_LISP ("next-selection-coding-system", &Vnext_selection_coding_system,
doc: /* Coding system for the next communication with other X clients.
@@ -2435,8 +2435,8 @@ A value of 0 means wait as long as necessary. This is initialized from the
QATOM = intern ("ATOM"); staticpro (&QATOM);
QATOM_PAIR = intern ("ATOM_PAIR"); staticpro (&QATOM_PAIR);
QNULL = intern ("NULL"); staticpro (&QNULL);
- Qcompound_text_no_extensions = intern ("compound-text-no-extensions");
- staticpro (&Qcompound_text_no_extensions);
+ Qcompound_text_with_extensions = intern ("compound-text-with-extensions");
+ staticpro (&Qcompound_text_with_extensions);
#ifdef CUT_BUFFER_SUPPORT
QCUT_BUFFER0 = intern ("CUT_BUFFER0"); staticpro (&QCUT_BUFFER0);