diff options
author | Eli Zaretskii <eliz@gnu.org> | 2002-02-22 13:20:00 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2002-02-22 13:20:00 +0000 |
commit | 23e16093ecd087847f494aaebbf58816415eed06 (patch) | |
tree | 8d8ba6e5cd0e956ced2a1f52619d8be5403775c5 /src/xselect.c | |
parent | fbbe0aceda052c399f798ea9817bcb3b095f8dbd (diff) | |
download | emacs-23e16093ecd087847f494aaebbf58816415eed06.tar.gz |
Fix last change.
Diffstat (limited to 'src/xselect.c')
-rw-r--r-- | src/xselect.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/xselect.c b/src/xselect.c index a3ec3e40d0e..660e0060020 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_with_extensions; +Lisp_Object Qcompound_text_no_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_with_extensions)) + Qcompound_text_no_extensions)) type = QCOMPOUND_TEXT; else if (NILP (type)) type = (stringp ? QSTRING : QCOMPOUND_TEXT); @@ -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_with_extensions = intern ("compound-text-with-extensions"); - staticpro (&Qcompound_text_with_extensions); + Qcompound_text_no_extensions = intern ("compound-text-no-extensions"); + staticpro (&Qcompound_text_no_extensions); #ifdef CUT_BUFFER_SUPPORT QCUT_BUFFER0 = intern ("CUT_BUFFER0"); staticpro (&QCUT_BUFFER0); |