aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1997-08-06 18:56:43 +0000
committerRichard M. Stallman1997-08-06 18:56:43 +0000
commit4cf066bb983720877b983204f9f8c21cc819613a (patch)
tree13cea0692e31467cdc0fb35c2ef132905ba009fb /src
parent2ebb362dc5a3eef897a7e4dc84ed076c67d2ec02 (diff)
downloademacs-4cf066bb983720877b983204f9f8c21cc819613a.tar.gz
emacs-4cf066bb983720877b983204f9f8c21cc819613a.zip
(syms_of_xselect): Doc syntax fixes.
Diffstat (limited to 'src')
-rw-r--r--src/xselect.c16
1 files changed, 8 insertions, 8 deletions
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 ()
2228 staticpro (&Vselection_alist); 2228 staticpro (&Vselection_alist);
2229 2229
2230 DEFVAR_LISP ("selection-converter-alist", &Vselection_converter_alist, 2230 DEFVAR_LISP ("selection-converter-alist", &Vselection_converter_alist,
2231 "An alist associating X Windows selection-types with functions.\n\ 2231 "An alist associating X Windows selection-types with functions.\n\
2232These functions are called to convert the selection, with three args:\n\ 2232These functions are called to convert the selection, with three args:\n\
2233the name of the selection (typically `PRIMARY', `SECONDARY', or `CLIPBOARD');\n\ 2233the name of the selection (typically `PRIMARY', `SECONDARY', or `CLIPBOARD');\n\
2234a desired type to which the selection should be converted;\n\ 2234a desired type to which the selection should be converted;\n\
@@ -2243,7 +2243,7 @@ and there is no meaningful selection value.");
2243 Vselection_converter_alist = Qnil; 2243 Vselection_converter_alist = Qnil;
2244 2244
2245 DEFVAR_LISP ("x-lost-selection-hooks", &Vx_lost_selection_hooks, 2245 DEFVAR_LISP ("x-lost-selection-hooks", &Vx_lost_selection_hooks,
2246 "A list of functions to be called when Emacs loses an X selection.\n\ 2246 "A list of functions to be called when Emacs loses an X selection.\n\
2247\(This happens when some other X client makes its own selection\n\ 2247\(This happens when some other X client makes its own selection\n\
2248or when a Lisp program explicitly clears the selection.)\n\ 2248or when a Lisp program explicitly clears the selection.)\n\
2249The functions are called with one argument, the selection type\n\ 2249The 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\
2251 Vx_lost_selection_hooks = Qnil; 2251 Vx_lost_selection_hooks = Qnil;
2252 2252
2253 DEFVAR_LISP ("x-sent-selection-hooks", &Vx_sent_selection_hooks, 2253 DEFVAR_LISP ("x-sent-selection-hooks", &Vx_sent_selection_hooks,
2254 "A list of functions to be called when Emacs answers a selection request.\n\ 2254 "A list of functions to be called when Emacs answers a selection request.\n\
2255The functions are called with four arguments:\n\ 2255The functions are called with four arguments:\n\
2256 - the selection name (typically `PRIMARY', `SECONDARY', or `CLIPBOARD');\n\ 2256 - the selection name (typically `PRIMARY', `SECONDARY', or `CLIPBOARD');\n\
2257 - the selection-type which Emacs was asked to convert the\n\ 2257 - 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\
2264it merely informs you that they have happened."); 2264it merely informs you that they have happened.");
2265 Vx_sent_selection_hooks = Qnil; 2265 Vx_sent_selection_hooks = Qnil;
2266 2266
2267 DEFVAR_LISP("clipboard-coding-system", &Vclipboard_coding_system, 2267 DEFVAR_LISP ("clipboard-coding-system", &Vclipboard_coding_system,
2268 "Coding system for communicating with other X clients. 2268 "Coding system for communicating with other X clients.\n\
2269When sending or receiving text via cut_buffer, selection, and clipboard, 2269When sending or receiving text via cut_buffer, selection, and clipboard,\n\
2270the text is encoded or decoded by this coding system. 2270the text is encoded or decoded by this coding system.\n\
2271A default value is `iso-latin-1'"); 2271A default value is `iso-latin-1'");
2272 Vclipboard_coding_system=intern ("iso-latin-1"); 2272 Vclipboard_coding_system=intern ("iso-latin-1");
2273 staticpro(&Vclipboard_coding_system); 2273 staticpro(&Vclipboard_coding_system);
2274 2274
2275 DEFVAR_INT ("x-selection-timeout", &x_selection_timeout, 2275 DEFVAR_INT ("x-selection-timeout", &x_selection_timeout,
2276 "Number of milliseconds to wait for a selection reply.\n\ 2276 "Number of milliseconds to wait for a selection reply.\n\
2277If the selection owner doesn't reply in this time, we give up.\n\ 2277If the selection owner doesn't reply in this time, we give up.\n\
2278A value of 0 means wait as long as necessary. This is initialized from the\n\ 2278A value of 0 means wait as long as necessary. This is initialized from the\n\
2279\"*selectionTimeout\" resource."); 2279\"*selectionTimeout\" resource.");