Mercurial > emacs
diff src/xselect.c @ 91375:4bb19b57806d
Merge unicode branch
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1037
author | Miles Bader <miles@gnu.org> |
---|---|
date | Fri, 01 Feb 2008 16:01:31 +0000 |
parents | 606f2d163a64 |
children | d1e53221c4aa |
line wrap: on
line diff
--- a/src/xselect.c Fri Feb 01 14:44:44 2008 +0000 +++ b/src/xselect.c Fri Feb 01 16:01:31 2008 +0000 @@ -123,13 +123,6 @@ static Lisp_Object Vx_lost_selection_functions; static Lisp_Object Vx_sent_selection_functions; -/* 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. */ -static Lisp_Object Vnext_selection_coding_system; - static Lisp_Object Qforeign_selection; /* If this is a smaller number than the max-request-size of the display, @@ -3006,30 +2999,6 @@ it merely informs you that they have happened. */); Vx_sent_selection_functions = Qnil; - DEFVAR_LISP ("selection-coding-system", &Vselection_coding_system, - doc: /* Coding system for communicating with other X clients. - -When sending text via selection and clipboard, if the requested -data-type is not "UTF8_STRING", the text is encoded by this coding -system. - -When receiving text, if the data-type of the received text is not -"UTF8_STRING", it is decoded by this coding system. - -See also the documentation of the variable `x-select-request-type' how -to control which data-type to request for receiving 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. -Usually, `selection-coding-system' is used for communicating with -other X clients. But, if this variable is set, it is used for the -next communication only. After the communication, this variable is -set to nil. */); - Vnext_selection_coding_system = Qnil; - DEFVAR_INT ("x-selection-timeout", &x_selection_timeout, doc: /* Number of milliseconds to wait for a selection reply. If the selection owner doesn't reply in this time, we give up.