From: Richard M. Stallman Date: Wed, 6 Aug 1997 18:56:43 +0000 (+0000) Subject: (syms_of_xselect): Doc syntax fixes. X-Git-Tag: emacs-20.1~752 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4cf066bb983720877b983204f9f8c21cc819613a;p=emacs.git (syms_of_xselect): Doc syntax fixes. --- diff --git a/src/xselect.c b/src/xselect.c index 1bff6772168..190f74b66f3 100644 --- a/src/xselect.c +++ b/src/xselect.c @@ -2228,7 +2228,7 @@ syms_of_xselect () staticpro (&Vselection_alist); DEFVAR_LISP ("selection-converter-alist", &Vselection_converter_alist, - "An alist associating X Windows selection-types with functions.\n\ + "An alist associating X Windows selection-types with functions.\n\ These functions are called to convert the selection, with three args:\n\ the name of the selection (typically `PRIMARY', `SECONDARY', or `CLIPBOARD');\n\ a desired type to which the selection should be converted;\n\ @@ -2243,7 +2243,7 @@ and there is no meaningful selection value."); Vselection_converter_alist = Qnil; DEFVAR_LISP ("x-lost-selection-hooks", &Vx_lost_selection_hooks, - "A list of functions to be called when Emacs loses an X selection.\n\ + "A list of functions to be called when Emacs loses an X selection.\n\ \(This happens when some other X client makes its own selection\n\ or when a Lisp program explicitly clears the selection.)\n\ The functions are called with one argument, the selection type\n\ @@ -2251,7 +2251,7 @@ The functions are called with one argument, the selection type\n\ Vx_lost_selection_hooks = Qnil; DEFVAR_LISP ("x-sent-selection-hooks", &Vx_sent_selection_hooks, - "A list of functions to be called when Emacs answers a selection request.\n\ + "A list of functions to be called when Emacs answers a selection request.\n\ The functions are called with four arguments:\n\ - the selection name (typically `PRIMARY', `SECONDARY', or `CLIPBOARD');\n\ - the selection-type which Emacs was asked to convert the\n\ @@ -2264,16 +2264,16 @@ 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; - DEFVAR_LISP("clipboard-coding-system", &Vclipboard_coding_system, - "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. + DEFVAR_LISP ("clipboard-coding-system", &Vclipboard_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\ A default value is `iso-latin-1'"); Vclipboard_coding_system=intern ("iso-latin-1"); staticpro(&Vclipboard_coding_system); DEFVAR_INT ("x-selection-timeout", &x_selection_timeout, - "Number of milliseconds to wait for a selection reply.\n\ + "Number of milliseconds to wait for a selection reply.\n\ If the selection owner doesn't reply in this time, we give up.\n\ A value of 0 means wait as long as necessary. This is initialized from the\n\ \"*selectionTimeout\" resource.");