summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas E. Dickey <dickey@invisible-island.net>2019-07-04 19:35:02 -0400
committerThomas E. Dickey <dickey@invisible-island.net>2019-07-04 21:06:43 -0400
commitc22df47605e3e5230addea2fc9a531fb0b84339d (patch)
tree51da7548c025f578bc442c8f683dc3b3cc011a0c
parentdc53edf2132fa7a25a75e2f8f12ed4623c4cbb2a (diff)
downloadxorg-lib-libXaw-c22df47605e3e5230addea2fc9a531fb0b84339d.tar.gz
trim some stray backslashes leftover from nroff, and fix some whitespace in code samples
Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
-rw-r--r--specs/Scrollbar.xml12
-rw-r--r--specs/Template.xml68
-rw-r--r--specs/Template_public_header_file.xml36
-rw-r--r--specs/Template_widget_source_file.xml42
-rw-r--r--specs/TextActions.xml4
-rw-r--r--specs/TextActions_default_translation_bindings.xml4
6 files changed, 83 insertions, 83 deletions
diff --git a/specs/Scrollbar.xml b/specs/Scrollbar.xml
index e32f5cb..a9f1ff6 100644
--- a/specs/Scrollbar.xml
+++ b/specs/Scrollbar.xml
@@ -865,16 +865,16 @@ getting a float into an argument list.
top = 0.5;
if (sizeof(float) &gt; sizeof(XtArgVal)) {
/*
- \ * If a float is larger than an XtArgVal then pass this
- \ * resource value by reference.
- \ */
+ * If a float is larger than an XtArgVal then pass this
+ * resource value by reference.
+ */
XtSetArg(args[0], XtNshown, &amp;top);
}
else {
/*
- \ * Convince C not to perform an automatic conversion, which
- \ * would truncate 0.5 to 0.
- \ */
+ * Convince C not to perform an automatic conversion, which
+ * would truncate 0.5 to 0.
+ */
XtArgVal * l_top = (XtArgVal *) &amp;top;
XtSetArg(args[0], XtNshown, *l_top);
}
diff --git a/specs/Template.xml b/specs/Template.xml
index ebc1c31..6809acb 100644
--- a/specs/Template.xml
+++ b/specs/Template.xml
@@ -98,7 +98,7 @@ convenience procedures, so we need to add
extern Pixel WindowColor1(&#x2006;/* Widget */&#x2006;);
extern Pixel WindowColor2(&#x2006;/* Widget */&#x2006;);
-extern Font\ \ WindowFont(&#x2006;/* Widget */&#x2006;);
+extern Font WindowFont(&#x2006;/* Widget */&#x2006;);
<!-- .CE -->
</literallayout>
<para>
@@ -244,41 +244,41 @@ static char translations[] =
TemplateClassRec templateClassRec = {
{ /* core fields */
- /* superclass */ (WidgetClass) &amp;widgetClassRec,
- /* class_name */ "Template",
- /* widget_size */ sizeof(TemplateRec),
- /* class_initialize */ NULL,
- /* class_part_initialize */ NULL,
- /* class_inited */ FALSE,
- /* initialize */ NULL,
- /* initialize_hook */ NULL,
- /* realize */ XtInheritRealize,
- /* actions */ actions,
- /* num_actions */ XtNumber(actions),
- /* resources */ resources,
- /* num_resources */ XtNumber(resources),
- /* xrm_class */ NULLQUARK,
- /* compress_motion */ TRUE,
- /* compress_exposure */ TRUE,
- /* compress_enterleave */ TRUE,
- /* visible_interest */ FALSE,
- /* destroy */ NULL,
- /* resize */ NULL,
- /* expose */ NULL,
- /* set_values */ NULL,
- /* set_values_hook */ NULL,
- /* set_values_almost */ XtInheritSetValuesAlmost,
- /* get_values_hook */ NULL,
- /* accept_focus */ NULL,
- /* version */ XtVersion,
- /* callback_private */ NULL,
- /* tm_table */ translations,
- /* query_geometry */ XtInheritQueryGeometry,
- /* display_accelerator */ XtInheritDisplayAccelerator,
- /* extension */ NULL
+ /* superclass */ (WidgetClass) &amp;widgetClassRec,
+ /* class_name */ "Template",
+ /* widget_size */ sizeof(TemplateRec),
+ /* class_initialize */ NULL,
+ /* class_part_initialize */ NULL,
+ /* class_inited */ FALSE,
+ /* initialize */ NULL,
+ /* initialize_hook */ NULL,
+ /* realize */ XtInheritRealize,
+ /* actions */ actions,
+ /* num_actions */ XtNumber(actions),
+ /* resources */ resources,
+ /* num_resources */ XtNumber(resources),
+ /* xrm_class */ NULLQUARK,
+ /* compress_motion */ TRUE,
+ /* compress_exposure */ TRUE,
+ /* compress_enterleave */ TRUE,
+ /* visible_interest */ FALSE,
+ /* destroy */ NULL,
+ /* resize */ NULL,
+ /* expose */ NULL,
+ /* set_values */ NULL,
+ /* set_values_hook */ NULL,
+ /* set_values_almost */ XtInheritSetValuesAlmost,
+ /* get_values_hook */ NULL,
+ /* accept_focus */ NULL,
+ /* version */ XtVersion,
+ /* callback_private */ NULL,
+ /* tm_table */ translations,
+ /* query_geometry */ XtInheritQueryGeometry,
+ /* display_accelerator */ XtInheritDisplayAccelerator,
+ /* extension */ NULL
},
{ /* template fields */
- /* empty */ 0
+ /* empty */ 0
}
};
diff --git a/specs/Template_public_header_file.xml b/specs/Template_public_header_file.xml
index 969e07c..eced840 100644
--- a/specs/Template_public_header_file.xml
+++ b/specs/Template_public_header_file.xml
@@ -30,18 +30,18 @@ are:
/* Resources:
- Name Class RepType Default Value
- ---- ----- ------- -------------
- background Background Pixel XtDefaultBackground
- border BorderColor Pixel XtDefaultForeground
- borderWidth BorderWidth Dimension 1
- destroyCallback Callback Pointer NULL
- height Height Dimension 0
- mappedWhenManaged MappedWhenManaged Boolean True
- sensitive Sensitive Boolean True
- width Width Dimension 0
- x Position Position 0
- y Position Position 0
+ Name Class RepType Default Value
+ ---- ----- ------- -------------
+ background Background Pixel XtDefaultBackground
+ border BorderColor Pixel XtDefaultForeground
+ borderWidth BorderWidth Dimension 1
+ destroyCallback Callback Pointer NULL
+ height Height Dimension 0
+ mappedWhenManaged MappedWhenManaged Boolean True
+ sensitive Sensitive Boolean True
+ width Width Dimension 0
+ x Position Position 0
+ y Position Position 0
*/
@@ -84,11 +84,11 @@ convenience procedures, so we need to add
<!-- .CB -->
/* Resources:
...
- callback Callback Callback NULL
- drawingColor1 Color Pixel XtDefaultForeground
- drawingColor2 Color Pixel XtDefaultForeground
- exposeCallback Callback Callback NULL
- font Font XFontStruct* XtDefaultFont
+ callback Callback Callback NULL
+ drawingColor1 Color Pixel XtDefaultForeground
+ drawingColor2 Color Pixel XtDefaultForeground
+ exposeCallback Callback Callback NULL
+ font Font XFontStruct* XtDefaultFont
...
*/
@@ -98,7 +98,7 @@ convenience procedures, so we need to add
extern Pixel WindowColor1(&#x2006;/* Widget */&#x2006;);
extern Pixel WindowColor2(&#x2006;/* Widget */&#x2006;);
-extern Font\ \ WindowFont(&#x2006;/* Widget */&#x2006;);
+extern Font WindowFont(&#x2006;/* Widget */&#x2006;);
<!-- .CE -->
</literallayout>
<para>
diff --git a/specs/Template_widget_source_file.xml b/specs/Template_widget_source_file.xml
index 05c6935..d446eee 100644
--- a/specs/Template_widget_source_file.xml
+++ b/specs/Template_widget_source_file.xml
@@ -45,41 +45,41 @@ static char translations[] =
TemplateClassRec templateClassRec = {
{ /* core fields */
- /* superclass */ (WidgetClass) &amp;widgetClassRec,
- /* class_name */ "Template",
- /* widget_size */ sizeof(TemplateRec),
+ /* superclass */ (WidgetClass) &amp;widgetClassRec,
+ /* class_name */ "Template",
+ /* widget_size */ sizeof(TemplateRec),
/* class_initialize */ NULL,
- /* class_part_initialize */ NULL,
- /* class_inited */ FALSE,
- /* initialize */ NULL,
+ /* class_part_initialize */ NULL,
+ /* class_inited */ FALSE,
+ /* initialize */ NULL,
/* initialize_hook */ NULL,
- /* realize */ XtInheritRealize,
- /* actions */ actions,
- /* num_actions */ XtNumber(actions),
- /* resources */ resources,
+ /* realize */ XtInheritRealize,
+ /* actions */ actions,
+ /* num_actions */ XtNumber(actions),
+ /* resources */ resources,
/* num_resources */ XtNumber(resources),
- /* xrm_class */ NULLQUARK,
+ /* xrm_class */ NULLQUARK,
/* compress_motion */ TRUE,
/* compress_exposure */ TRUE,
- /* compress_enterleave */ TRUE,
+ /* compress_enterleave */ TRUE,
/* visible_interest */ FALSE,
- /* destroy */ NULL,
- /* resize */ NULL,
- /* expose */ NULL,
- /* set_values */ NULL,
+ /* destroy */ NULL,
+ /* resize */ NULL,
+ /* expose */ NULL,
+ /* set_values */ NULL,
/* set_values_hook */ NULL,
/* set_values_almost */ XtInheritSetValuesAlmost,
/* get_values_hook */ NULL,
- /* accept_focus */ NULL,
- /* version */ XtVersion,
+ /* accept_focus */ NULL,
+ /* version */ XtVersion,
/* callback_private */ NULL,
- /* tm_table */ translations,
+ /* tm_table */ translations,
/* query_geometry */ XtInheritQueryGeometry,
/* display_accelerator */ XtInheritDisplayAccelerator,
- /* extension */ NULL
+ /* extension */ NULL
},
{ /* template fields */
- /* empty */ 0
+ /* empty */ 0
}
};
diff --git a/specs/TextActions.xml b/specs/TextActions.xml
index 72d71b9..cfa8ca6 100644
--- a/specs/TextActions.xml
+++ b/specs/TextActions.xml
@@ -948,9 +948,9 @@ Text widget's <function>translations</function> resource.
:Meta&lt;Key&gt;]: forward-paragraph() \\n\\
:Meta&lt;Key&gt;[: backward-paragraph() \\n\\
~Shift Meta&lt;Key&gt;Delete: delete-previous-word() \\n\\
- \ Shift Meta&lt;Key&gt;Delete: backward-kill-word() \\n\\
+ Shift Meta&lt;Key&gt;Delete: backward-kill-word() \\n\\
~Shift Meta&lt;Key&gt;Backspace: delete-previous-word() \\n\\
- \ Shift Meta&lt;Key&gt;Backspace: backward-kill-word() \\n\\
+ Shift Meta&lt;Key&gt;Backspace: backward-kill-word() \\n\\
&lt;Key&gt;Right: forward-character() \\n\\
&lt;Key&gt;Left: backward-character() \\n\\
&lt;Key&gt;Down: next-line() \\n\\
diff --git a/specs/TextActions_default_translation_bindings.xml b/specs/TextActions_default_translation_bindings.xml
index e9277b1..ae4e56c 100644
--- a/specs/TextActions_default_translation_bindings.xml
+++ b/specs/TextActions_default_translation_bindings.xml
@@ -56,9 +56,9 @@ Text widget's <function>translations</function> resource.
:Meta&lt;Key&gt;]: forward-paragraph() \\n\\
:Meta&lt;Key&gt;[: backward-paragraph() \\n\\
~Shift Meta&lt;Key&gt;Delete: delete-previous-word() \\n\\
- \ Shift Meta&lt;Key&gt;Delete: backward-kill-word() \\n\\
+ Shift Meta&lt;Key&gt;Delete: backward-kill-word() \\n\\
~Shift Meta&lt;Key&gt;Backspace: delete-previous-word() \\n\\
- \ Shift Meta&lt;Key&gt;Backspace: backward-kill-word() \\n\\
+ Shift Meta&lt;Key&gt;Backspace: backward-kill-word() \\n\\
&lt;Key&gt;Right: forward-character() \\n\\
&lt;Key&gt;Left: backward-character() \\n\\
&lt;Key&gt;Down: next-line() \\n\\