summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2012-08-23 09:54:25 -0400
committerEric S. Raymond <esr@thyrsus.com>2012-08-23 09:54:25 -0400
commit6e27a828f39f7028bc7f4a8736e7262fca250632 (patch)
tree6924a3d018338b21fb5d8b9a17a5c89e70fe1780
parenta7fb575957ff4d9dd3671994a005ac3be8bb10fe (diff)
downloadxorg-lib-libX11-6e27a828f39f7028bc7f4a8736e7262fca250632.tar.gz
Clean up, my last commit missed four cases.
Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
-rw-r--r--man/XAllocStandardColormap.man4
-rw-r--r--man/XAllocWMHints.man22
-rw-r--r--man/XGetEventData.man2
-rw-r--r--man/XmbTextListToTextProperty.man22
4 files changed, 19 insertions, 31 deletions
diff --git a/man/XAllocStandardColormap.man b/man/XAllocStandardColormap.man
index 0b86d7fb..5cc1f71d 100644
--- a/man/XAllocStandardColormap.man
+++ b/man/XAllocStandardColormap.man
@@ -342,8 +342,6 @@ ranges, one then can compute a corresponding pixel value by
using the following expression:
.LP
.Ds
-.TA .5i 1.5i
-.ta .5i 1.5i
(r * red_mult + g * green_mult + b * blue_mult + base_pixel) & 0xFFFFFFFF
.De
.LP
@@ -358,8 +356,6 @@ To compute a
pixel value, use the following expression:
.LP
.Ds
-.TA .5i 1.5i
-.ta .5i 1.5i
(gray * red_mult + base_pixel) & 0xFFFFFFFF
.De
.LP
diff --git a/man/XAllocWMHints.man b/man/XAllocWMHints.man
index 9e707427..90c61b48 100644
--- a/man/XAllocWMHints.man
+++ b/man/XAllocWMHints.man
@@ -288,21 +288,19 @@ T}
.TE
.IN "XWMHints" "" "@DEF@"
.Ds 0
-.TA .5i 2.5i
-.ta .5i 2.5i
/\&* Values */
typedef struct {
- long flags; /\&* marks which fields in this structure are defined */
- Bool input; /\&* does this application rely on the window manager to
- get keyboard input? */
- int initial_state; /\&* see below */
- Pixmap icon_pixmap; /\&* pixmap to be used as icon */
- Window icon_window; /\&* window to be used as icon */
- int icon_x, icon_y; /\&* initial position of icon */
- Pixmap icon_mask; /\&* pixmap to be used as mask for icon_pixmap */
- XID window_group; /\&* id of related window group */
- /\&* this structure may be extended in the future */
+ long flags; /\&* marks which fields in this structure are defined */
+ Bool input; /\&* does this application rely on the window manager to
+ get keyboard input? */
+ int initial_state; /\&* see below */
+ Pixmap icon_pixmap; /\&* pixmap to be used as icon */
+ Window icon_window; /\&* window to be used as icon */
+ int icon_x, icon_y; /\&* initial position of icon */
+ Pixmap icon_mask; /\&* pixmap to be used as mask for icon_pixmap */
+ XID window_group; /\&* id of related window group */
+ /\&* this structure may be extended in the future */
} XWMHints;
.De
.LP
diff --git a/man/XGetEventData.man b/man/XGetEventData.man
index bb2f32fd..b77ec4a1 100644
--- a/man/XGetEventData.man
+++ b/man/XGetEventData.man
@@ -186,8 +186,6 @@ for each cookie claimed with
.SH EXAMPLE CODE
.Ds 0
-.TA .5i 3i
-.ta .5i 3i
XEvent event;
XGenericEventCookie *cookie = &ev;
diff --git a/man/XmbTextListToTextProperty.man b/man/XmbTextListToTextProperty.man
index 87f5f916..16b2f4ea 100644
--- a/man/XmbTextListToTextProperty.man
+++ b/man/XmbTextListToTextProperty.man
@@ -403,13 +403,11 @@ The
structure contains:
.LP
.Ds 0
-.TA .5i 2.5i
-.ta .5i 2.5i
typedef struct {
- unsigned char *value; /\&* property data */
- Atom encoding; /\&* type of property */
- int format; /\&* 8, 16, or 32 */
- unsigned long nitems; /\&* number of items in value */
+ unsigned char *value; /\&* property data */
+ Atom encoding; /\&* type of property */
+ int format; /\&* 8, 16, or 32 */
+ unsigned long nitems; /\&* number of items in value */
} XTextProperty;
.De
.LP
@@ -442,14 +440,12 @@ T} T{
T}
.TE
.Ds 0
-.TA .5i 2.5i
-.ta .5i 2.5i
typedef enum {
- XStringStyle, /\&* STRING */
- XCompoundTextStyle, /\&* COMPOUND_TEXT */
- XTextStyle, /\&* text in owner's encoding (current locale) */
- XStdICCTextStyle, /\&* STRING, else COMPOUND_TEXT */
- XUTF8StringStyle /\&* UTF8_STRING */
+ XStringStyle, /\&* STRING */
+ XCompoundTextStyle, /\&* COMPOUND_TEXT */
+ XTextStyle, /\&* text in owner's encoding (current locale) */
+ XStdICCTextStyle, /\&* STRING, else COMPOUND_TEXT */
+ XUTF8StringStyle /\&* UTF8_STRING */
} XICCEncodingStyle;
.De
.SH "SEE ALSO"