From: Eli Zaretskii Date: Sat, 6 Jul 2002 14:23:30 +0000 (+0000) Subject: (syms_of_xselect): The default value of X-Git-Tag: emacs-pretest-21.2.91~191 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d7696619b5756a143fec79aeb24ce911b097d61b;p=emacs.git (syms_of_xselect): The default value of selection-coding-system is now compound-text-with-extensions. --- diff --git a/src/xselect.c b/src/xselect.c index 072cb60db74..fd5f177dc1b 100644 --- a/src/xselect.c +++ b/src/xselect.c @@ -2396,12 +2396,15 @@ This hook doesn't let you change the behavior of Emacs's selection replies,\n\ it merely informs you that they have happened."); Vx_sent_selection_hooks = Qnil; + Qcompound_text_with_extensions = intern ("compound-text-with-extensions"); + staticpro (&Qcompound_text_with_extensions); + DEFVAR_LISP ("selection-coding-system", &Vselection_coding_system, "Coding system for communicating with other X clients.\n\ When sending or receiving text via cut_buffer, selection, and clipboard,\n\ the text is encoded or decoded by this coding system.\n\ The default value is `compound-text'."); - Vselection_coding_system = intern ("compound-text"); + Vselection_coding_system = Qcompound_text_with_extensions; DEFVAR_LISP ("next-selection-coding-system", &Vnext_selection_coding_system, "Coding system for the next communication with other X clients.\n\ @@ -2435,8 +2438,6 @@ A value of 0 means wait as long as necessary. This is initialized from the\n\ 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); #ifdef CUT_BUFFER_SUPPORT QCUT_BUFFER0 = intern ("CUT_BUFFER0"); staticpro (&QCUT_BUFFER0);