summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2011-09-16 22:18:56 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2011-09-16 22:18:56 -0700
commitb46167511d429792086fb8e8cfea6f19b2fc9847 (patch)
tree0c9e6e660581dd670f711b744562724f7d5c8243 /man
parentead0cea593266b91f08d33a0c83170ba92d8ac7e (diff)
downloadxorg-lib-libXext-b46167511d429792086fb8e8cfea6f19b2fc9847.tar.gz
Strip trailing whitespace
Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}' git diff -w & git diff -b show no diffs from this change Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'man')
-rw-r--r--man/DBE.man118
-rw-r--r--man/DPMSCapable.man18
-rw-r--r--man/DPMSDisable.man16
-rw-r--r--man/DPMSEnable.man32
-rw-r--r--man/DPMSForceLevel.man22
-rw-r--r--man/DPMSGetTimeouts.man36
-rw-r--r--man/DPMSGetVersion.man22
-rw-r--r--man/DPMSInfo.man24
-rw-r--r--man/DPMSQueryExtension.man40
-rw-r--r--man/DPMSSetTimeouts.man80
-rw-r--r--man/XShape.man136
-rw-r--r--man/XShm.man30
-rw-r--r--man/XcupGetReservedColormapEntries.man22
-rw-r--r--man/XcupQueryVersion.man18
-rw-r--r--man/XcupStoreColors.man22
-rw-r--r--man/XdbeAllocateBackBufferName.man38
-rw-r--r--man/XdbeBeginIdiom.man30
-rw-r--r--man/XdbeDeallocateBackBufferName.man30
-rw-r--r--man/XdbeEndIdiom.man30
-rw-r--r--man/XdbeFreeVisualInfo.man30
-rw-r--r--man/XdbeGetBackBufferAttributes.man34
-rw-r--r--man/XdbeGetVisualInfo.man36
-rw-r--r--man/XdbeQueryExtension.man32
-rw-r--r--man/XdbeSwapBuffers.man30
-rw-r--r--man/Xevi.man56
-rw-r--r--man/Xmbuf.man72
26 files changed, 527 insertions, 527 deletions
diff --git a/man/DBE.man b/man/DBE.man
index 7cd36b6..5ed34c2 100644
--- a/man/DBE.man
+++ b/man/DBE.man
@@ -1,26 +1,26 @@
.\" Copyright (c) 1995 Hewlett-Packard Company
-.\"
+.\"
.\" Permission is hereby granted, free of charge, to any person obtaining a
-.\" copy of this software and associated documentation files (the "Software"),
-.\" to deal in the Software without restriction, including without limitation
-.\" the rights to use, copy, modify, merge, publish, distribute, sublicense,
-.\" and/or sell copies of the Software, and to permit persons to whom the
+.\" copy of this software and associated documentation files (the "Software"),
+.\" to deal in the Software without restriction, including without limitation
+.\" the rights to use, copy, modify, merge, publish, distribute, sublicense,
+.\" and/or sell copies of the Software, and to permit persons to whom the
.\" Software furnished to do so, subject to the following conditions:
-.\"
+.\"
.\" The above copyright notice and this permission notice shall be included in
.\" all copies or substantial portions of the Software.
-.\"
+.\"
.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
.\" IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-.\" HEWLETT-PACKARD COMPANY BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-.\" WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
-.\" OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+.\" HEWLETT-PACKARD COMPANY BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+.\" WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
+.\" OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
.\" SOFTWARE.
-.\"
-.\" Except as contained in this notice, the name of the Hewlett-Packard Company shall not
-.\" be used in advertising or otherwise to promote the sale, use or other
-.\" dealing in this Software without prior written authorization from the
+.\"
+.\" Except as contained in this notice, the name of the Hewlett-Packard Company shall not
+.\" be used in advertising or otherwise to promote the sale, use or other
+.\" dealing in this Software without prior written authorization from the
.\" Hewlett-Packard Company.
.\"
.TH DBE __libmansuffix__ __xorgversion__ "X FUNCTIONS"
@@ -33,9 +33,9 @@ Double-buffering uses two buffers, called front and back, which hold images.
The front buffer is visible to the user; the back buffer is not. Successive
frames of an animation are rendered into the back buffer while the previously
rendered frame is displayed in the front buffer. When a new frame is ready,
-the back and front buffers swap roles, making the new frame visible. Ideally,
+the back and front buffers swap roles, making the new frame visible. Ideally,
this exchange appears to happen instantaneously to the user, with no visual
-artifacts. Thus, only completely rendered images are presented to the user,
+artifacts. Thus, only completely rendered images are presented to the user,
and remain visible during the entire time it takes to render a new frame. The
result is a flicker-free animation.
.SH DESCRIPTION
@@ -46,34 +46,34 @@ Normal windows are created using
or
.B XCreateSimpleWindow(),
which allocate a set of window attributes and, for InputOutput windows, a front
-buffer, into which an image can be drawn. The contents of this buffer will be
+buffer, into which an image can be drawn. The contents of this buffer will be
displayed when the window is visible.
This extension enables applications to use double-buffering with a window.
This involves creating a second buffer, called a back buffer, and associating
one or more back buffer names
.I (XIDs)
-with the window, for use when referring
+with the window, for use when referring
to (i.e., drawing to or reading from) the window's back buffer.
The back buffer name is a drawable of type
.I XdbeBackBuffer.
DBE provides a relative double-buffering model. One XID, the window,
always refers to the front buffer. One or more other XIDs, the back buffer
-names, always refer to the back buffer. After a buffer swap, the window
+names, always refer to the back buffer. After a buffer swap, the window
continues to refer to the (new) front buffer, and the back buffer name
continues to refer to the (new) back buffer. Thus, applications and toolkits
that want to just render to the back buffer always use the back buffer name
for all drawing requests to the window. Portions of an application that want
-to render to the front buffer always use the window XID for all drawing
+to render to the front buffer always use the window XID for all drawing
requests to the window.
Multiple clients and toolkits can all use double-buffering on the same window.
-DBE does not provide a request for querying whether a window has
-double-buffering support, and if so, what the back buffer name is. Given the
+DBE does not provide a request for querying whether a window has
+double-buffering support, and if so, what the back buffer name is. Given the
asynchronous nature of the X Window System, this would cause race
-conditions. Instead, DBE allows multiple back buffer names to exist for the
-same window; they all refer to the same physical back buffer. The first time a
+conditions. Instead, DBE allows multiple back buffer names to exist for the
+same window; they all refer to the same physical back buffer. The first time a
back buffer name is allocated for a window, the window becomes
double-buffered and the back buffer name is associated with the window.
Subsequently, the window already is a double-buffered window, and nothing
@@ -82,7 +82,7 @@ that the new back buffer name is associated with the window. The window
remains double-buffered until either the window is destroyed, or until all of
the back buffer names for the window are deallocated.
-In general, both the front and back buffers ae treated the same. In
+In general, both the front and back buffers ae treated the same. In
particular, here are some important characteristics:
.RS
@@ -92,11 +92,11 @@ Both buffers associated with a window have the same visual type, depth,
width, height, and shape as the window.
Both buffers associated with a window are "visible" (or "obscured") in
-the same way. When an Expose event is generated for a window, this
-event is considered to apply to both buffers equally. When a
-double-buffered window is exposed, both buffers are tiled with the
+the same way. When an Expose event is generated for a window, this
+event is considered to apply to both buffers equally. When a
+double-buffered window is exposed, both buffers are tiled with the
window background.
-Even though the back buffer is not visible, terms such as obscure apply to the
+Even though the back buffer is not visible, terms such as obscure apply to the
back buffer as well as to the front buffer.
It is acceptable at any time to pass an
@@ -148,14 +148,14 @@ on a back
buffer return undefined image contents for any obscured regions of the back
buffer that fall within the image.
-Drawing to a back buffer always uses the clip region that would be used to
-draw to the front buffer with a GC subwindow-mode of ClipByChildren. If an
+Drawing to a back buffer always uses the clip region that would be used to
+draw to the front buffer with a GC subwindow-mode of ClipByChildren. If an
ancestor of a double-buffered window is drawn to with a GC having a
subwindow-mode of IncludeInferiors, the effect on the double-buffered
window's back buffer depends on the depth of the double-buffered window
and the ancestor. If the depths are the same, the contents of the back buffer
of the double-buffered window are not changed. If the depths are different,
-the contents of the back buffer of the double-buffered window are undefined
+the contents of the back buffer of the double-buffered window are undefined
for the pixels that the IncludeInferiors drawing touched.
DBE adds no new events. DBE does not extend the semantics of any existing
@@ -183,13 +183,13 @@ When a double-buffered window is destroyed,
both buffers associated with the window are destroyed, and all back buffer
names associated with the window are freed.
-If the size of a double-buffered window changes, both
-buffers assume the new size. If the window's size increases, the effect on the
+If the size of a double-buffered window changes, both
+buffers assume the new size. If the window's size increases, the effect on the
buffers depends on whether the implementation honors bit gravity for buffers.
-If bit gravity is implemented, then the contents of both buffers are moved in
+If bit gravity is implemented, then the contents of both buffers are moved in
accordance with the window's bit gravity,
-and the remaining areas are tiled with the window background. If
-bit gravity is not implemented, then the entire unobscured region of both
+and the remaining areas are tiled with the window background. If
+bit gravity is not implemented, then the entire unobscured region of both
buffers is tiled with the window background. In either case, Expose events are
generated for the region that is tiled with the window background.
@@ -203,37 +203,37 @@ If the Shape extension
.B ShapeRectangles, ShapeMask, ShapeCombine,
or
.B ShapeOffset
-request is executed on a double-buffered window, both
+request is executed on a double-buffered window, both
buffers are reshaped to match the new window shape. The region difference
-D = new shape - old shape is tiled with the window background in both
+D = new shape - old shape is tiled with the window background in both
buffers, and Expose events are generated for D.
.RE
.B Complex Swap Actions
.RS
-DBE has no explicit knowledge of ancillary buffers (e.g. depth buffers or
+DBE has no explicit knowledge of ancillary buffers (e.g. depth buffers or
alpha buffers), and only has a limited set of defined swap actions. Some
-applications may need a richer set of swap actions than DBE provides. Some
-DBE implementations have knowledge of ancillary buffers, and/or can provide
+applications may need a richer set of swap actions than DBE provides. Some
+DBE implementations have knowledge of ancillary buffers, and/or can provide
a rich set of swap actions. Instead of continually extending DBE to increase
-its set of swap actions, DBE provides a flexible "idiom" mechanism. If an
+its set of swap actions, DBE provides a flexible "idiom" mechanism. If an
applications's needs are served by the defined swap actions, it should use
them; otherwise, it should use the following method of expressing a complex
swap action as an idiom. Following this policy will ensure the best possible
performance across a wide variety of implementations.
-As suggested by the term "idiom," a complex swap action should be expressed
-as a group/series of requests. Taken together, this group of requests may be
-combined into an atomic operation by the implementation, in order to
+As suggested by the term "idiom," a complex swap action should be expressed
+as a group/series of requests. Taken together, this group of requests may be
+combined into an atomic operation by the implementation, in order to
maximize performance. The set of idioms actually recognized for optimization
-is implementation dependent. To help with idiom expression and
-interpretation, an idiom must be surrounded by two function calls:
+is implementation dependent. To help with idiom expression and
+interpretation, an idiom must be surrounded by two function calls:
.B XdbeBeginIdiom()
and
.B XdbeEndIdiom().
Unless this begin-end pair
-surrounds the idiom, it may not be recognized by a given implementation, and
+surrounds the idiom, it may not be recognized by a given implementation, and
performance will suffer.
For example, if an application wants to swap buffers for two windows, and use
@@ -260,7 +260,7 @@ The
and
.B XdbeEndIdiom()
functions do not perform any
-actions themselves. They are treated as markers by implementations that can
+actions themselves. They are treated as markers by implementations that can
combine certain groups/series of requests as idioms, and are ignored by other
implementations or for non-recognized groups/series of requests. If these
function calls are made out of order, or are mismatched, no errors are sent,
@@ -271,32 +271,32 @@ need not be included in an idiom. For
example, if a swap action of Copied is desired, but only some of the planes
should be copied,
.B XCopyArea()
-may be used instead of
+may be used instead of
.B XdbeSwapBuffers().
If
.B XdbeSwapBuffers()
is included in an idiom, it should immediately follow the
.B XdbeBeginIdiom()
-call. Also, when the
+call. Also, when the
.B XdbeSwapBuffers()
-is included in an idiom, that request's swap action will
-still be valid, and if the swap action might overlap with another request, then
+is included in an idiom, that request's swap action will
+still be valid, and if the swap action might overlap with another request, then
the final result of the idiom must be as if the separate requests were executed
-serially. For example, if the specified swap action is Untouched, and if a
+serially. For example, if the specified swap action is Untouched, and if a
.B XFillRectangle()
using a client clip rectangle is done to the window's back
buffer after the
.B XdbeSwapBuffers()
-call, then the contents of the new
+call, then the contents of the new
back buffer (after the idiom) will be the same as if the idiom was not
recognized by the implementation.
-It is highly recommended that API providers define, and application
+It is highly recommended that API providers define, and application
developers use, "convenience" functions that allow client applications to call
one procedure that encapsulates common idioms. These functions will
generate the
.B XdbeBeginIdiom(),
-idiom, and
+idiom, and
.B XdbeEndIdiom()
calls. Usage of these functions will ensure best possible
performance across a wide variety of implementations.
diff --git a/man/DPMSCapable.man b/man/DPMSCapable.man
index dde6d95..d802ae0 100644
--- a/man/DPMSCapable.man
+++ b/man/DPMSCapable.man
@@ -1,5 +1,5 @@
.\" Copyright \(co Digital Equipment Corporation, 1996
-.\"
+.\"
.\" Permission to use, copy, modify, distribute, and sell this
.\" documentation for any purpose is hereby granted without fee,
.\" provided that the above copyright notice and this permission
@@ -47,19 +47,19 @@ DPMSCapable \- returns the DPMS capability of the X server
Specifies the connection to the X server
.SH DESCRIPTION
.LP
-The
-.I DPMSCapable
-function returns the Display Power Management Signaling (DPMS) capability of
-the X server, either TRUE \^(capable of DPMS\^) or FALSE \^(incapable of
+The
+.I DPMSCapable
+function returns the Display Power Management Signaling (DPMS) capability of
+the X server, either TRUE \^(capable of DPMS\^) or FALSE \^(incapable of
DPMS\^).
.SH "RETURN VALUES"
.TP 15
True
-The
-.I DPMSCapable
+The
+.I DPMSCapable
function returns True if the X server is capable of DPMS.
.TP 15
False
-The
-.I DPMSCapable
+The
+.I DPMSCapable
function returns True if the X server is incapable of DPMS.
diff --git a/man/DPMSDisable.man b/man/DPMSDisable.man
index eb9993a..efc1405 100644
--- a/man/DPMSDisable.man
+++ b/man/DPMSDisable.man
@@ -1,5 +1,5 @@
.\" Copyright \(co Digital Equipment Corporation, 1996
-.\"
+.\"
.\" Permission to use, copy, modify, distribute, and sell this
.\" documentation for any purpose is hereby granted without fee,
.\" provided that the above copyright notice and this permission
@@ -47,18 +47,18 @@ DPMSDisable \- disables DPMS on the specified display
Specifies the connection to the X server
.SH DESCRIPTION
.LP
-The
-.I DPMSDisable
+The
+.I DPMSDisable
function disables Display Power Management Signaling (DPMS) on the specified
-display. When disabled, DPMS sets the display to DPMSModeOn. If
-.I DPMSDisable
-is invoked on a display with DPMS already disabled or on a display which does
+display. When disabled, DPMS sets the display to DPMSModeOn. If
+.I DPMSDisable
+is invoked on a display with DPMS already disabled or on a display which does
not support DPMS, no change is made and no error is returned.
.SH "RETURN VALUES"
.TP 15
TRUE
-The
-.I DPMSDisable
+The
+.I DPMSDisable
function always returns TRUE.
.SH "SEE ALSO"
.BR DPMSCapable (__libmansuffix__),
diff --git a/man/DPMSEnable.man b/man/DPMSEnable.man
index f3f8d5b..a377dd2 100644
--- a/man/DPMSEnable.man
+++ b/man/DPMSEnable.man
@@ -1,5 +1,5 @@
.\" Copyright \(co Digital Equipment Corporation, 1996
-.\"
+.\"
.\" Permission to use, copy, modify, distribute, and sell this
.\" documentation for any purpose is hereby granted without fee,
.\" provided that the above copyright notice and this permission
@@ -30,7 +30,7 @@
.\" DEALINGS IN THE SOFTWARE.
.\"
.\" X Window System is a trademark of The Open Group.
-.\"
+.\"
.TH DPMSEnable __libmansuffix__ __xorgversion__ "X FUNCTIONS"
.SH NAME
DPMSEnable \- enables DPMS on the specified display
@@ -49,26 +49,26 @@ DPMSEnable \- enables DPMS on the specified display
Specifies the connection to the X server
.SH DESCRIPTION
.LP
-The
-.I DPMSEnable
-function enables Display Power Management Signaling (DPMS) on the specified
-.I display.
-When DPMS is enabled, DPMS will use the currently saved timeout values. It will
-trigger the appropriate DPMS power level based on the timeout values. Refer to
-.I DPMSSetTimeouts.
-All physical screens are affected by
-.I DPMSEnable
+The
+.I DPMSEnable
+function enables Display Power Management Signaling (DPMS) on the specified
+.I display.
+When DPMS is enabled, DPMS will use the currently saved timeout values. It will
+trigger the appropriate DPMS power level based on the timeout values. Refer to
+.I DPMSSetTimeouts.
+All physical screens are affected by
+.I DPMSEnable
at the same time.
-If
-.I DPMSEnable
-is invoked on a display which has DPMS already enabled, or on a display which
+If
+.I DPMSEnable
+is invoked on a display which has DPMS already enabled, or on a display which
does not support DPMS, no change is made and no error is returned.
.SH "RETURN VALUES"
.TP 15
TRUE
-The
-.I DPMSEnable
+The
+.I DPMSEnable
function always returns TRUE.
.SH "SEE ALSO"
.BR DPMSCapable (__libmansuffix__),
diff --git a/man/DPMSForceLevel.man b/man/DPMSForceLevel.man
index 3ce5923..6517df8 100644
--- a/man/DPMSForceLevel.man
+++ b/man/DPMSForceLevel.man
@@ -1,5 +1,5 @@
.\" Copyright \(co Digital Equipment Corporation, 1996
-.\"
+.\"
.\" Permission to use, copy, modify, distribute, and sell this
.\" documentation for any purpose is hereby granted without fee,
.\" provided that the above copyright notice and this permission
@@ -30,7 +30,7 @@
.\" DEALINGS IN THE SOFTWARE.
.\"
.\" X Window System is a trademark of The Open Group.
-.\"
+.\"
.TH DPMSForceLevel __libmansuffix__ __xorgversion__ "X FUNCTIONS"
.SH NAME
DPMSForceLevel \- forces a DPMS capable display into the
@@ -53,20 +53,20 @@ Specifies the connection to the X server
Specifies the level to force power to
.SH DESCRIPTION
.LP
-The
-.I DPMSForceLevel
-function forces a DPMS capable display into the specified power level. The
-\fIlevel\fP must be one of following four states: DPMSModeOn, DPMSModeStandby,
-DPMSModeSuspend, or DPMSModeOff. Values other than these will result in a
+The
+.I DPMSForceLevel
+function forces a DPMS capable display into the specified power level. The
+\fIlevel\fP must be one of following four states: DPMSModeOn, DPMSModeStandby,
+DPMSModeSuspend, or DPMSModeOff. Values other than these will result in a
BadValue error. If DPMS
-is disabled on the display, trying to set the power level on the display will
-result in a BadMatch
+is disabled on the display, trying to set the power level on the display will
+result in a BadMatch
protocol error.
.SH "RETURN VALUES"
.TP 15
TRUE
-The
-.I DPMSForceLevel
+The
+.I DPMSForceLevel
function always returns TRUE.
.SH ERRORS
.TP 15
diff --git a/man/DPMSGetTimeouts.man b/man/DPMSGetTimeouts.man
index 22d51b5..0468cfd 100644
--- a/man/DPMSGetTimeouts.man
+++ b/man/DPMSGetTimeouts.man
@@ -1,5 +1,5 @@
.\" Copyright \(co Digital Equipment Corporation, 1996
-.\"
+.\"
.\" Permission to use, copy, modify, distribute, and sell this
.\" documentation for any purpose is hereby granted without fee,
.\" provided that the above copyright notice and this permission
@@ -30,10 +30,10 @@
.\" DEALINGS IN THE SOFTWARE.
.\"
.\" X Window System is a trademark of The Open Group.
-.\"
+.\"
.TH DPMSGetTimeouts __libmansuffix__ __xorgversion__ "X FUNCTIONS"
.SH NAME
-DPMSGetTimeouts \- retrieves the timeout values used by the X server for DPMS
+DPMSGetTimeouts \- retrieves the timeout values used by the X server for DPMS
timings
.SH SYNOPSIS
.PP
@@ -50,7 +50,7 @@ timings
.br
CARD16 *\fIsuspend\fP\^,
.br
- CARD16 *\fIoff\fP\^
+ CARD16 *\fIoff\fP\^
);
.if n .ti +5n
.if t .ti +.5i
@@ -69,32 +69,32 @@ Specifies the current suspend timeout in seconds
Specifies the current off timeout in seconds
.SH DESCRIPTION
.LP
-The
-.I DPMSGetTimeouts
-function retrieves the timeout values used by the X server for DPMS timings.
+The
+.I DPMSGetTimeouts
+function retrieves the timeout values used by the X server for DPMS timings.
.LP
-The value
-.I standby
-is the amount of time of inactivity in seconds before standby mode is invoked. A
+The value
+.I standby
+is the amount of time of inactivity in seconds before standby mode is invoked. A
value of zero indicates that this mode has been disabled.
.LP
-The value \fIsuspend\fP is the amount of time of inactivity in seconds before
-the second level of power savings is invoked. A value of zero indicates that
+The value \fIsuspend\fP is the amount of time of inactivity in seconds before
+the second level of power savings is invoked. A value of zero indicates that
this mode has been disabled.
.LP
-The value \fIoff\fP is the amount of time of inactivity in seconds before the
-third and final level of power savings is invoked. A value of zero indicates
+The value \fIoff\fP is the amount of time of inactivity in seconds before the
+third and final level of power savings is invoked. A value of zero indicates
that this mode has been disabled.
.SH "RETURN VALUES"
.TP 15
TRUE
-The
-.I DPMSGetTimeouts
+The
+.I DPMSGetTimeouts
function returns TRUE when values are returned.
.TP 15
FALSE
-The
-.I DPMSGetTimeouts
+The
+.I DPMSGetTimeouts
function returns FALSE when no values returned.
.SH "SEE ALSO"
.BR DPMSCapable (__libmansuffix__),
diff --git a/man/DPMSGetVersion.man b/man/DPMSGetVersion.man
index 88c6fe6..a3fcd38 100644
--- a/man/DPMSGetVersion.man
+++ b/man/DPMSGetVersion.man
@@ -1,5 +1,5 @@
.\" Copyright \(co Digital Equipment Corporation, 1996
-.\"
+.\"
.\" Permission to use, copy, modify, distribute, and sell this
.\" documentation for any purpose is hereby granted without fee,
.\" provided that the above copyright notice and this permission
@@ -30,7 +30,7 @@
.\" DEALINGS IN THE SOFTWARE.
.\"
.\" X Window System is a trademark of The Open Group.
-.\"
+.\"
.TH DPMSGetVersion __libmansuffix__ __xorgversion__ "X FUNCTIONS"
.SH NAME
DPMSGetVersion \- returns the version of the DPMS extension implemented by
@@ -48,7 +48,7 @@ the X server
.br
int *\fImajor_version\fP\^,
.br
- int *\fIminor_version\fP\^
+ int *\fIminor_version\fP\^
);
.if n .ti +5n
.if t .ti +.5i
@@ -64,23 +64,23 @@ Specifies the return location for the extension major version
Specifies the return location for the extension minor version
.SH DESCRIPTION
.LP
-The
-.I DPMSGetVersion
+The
+.I DPMSGetVersion
function returns the version of the Display Power Management Signaling (DPMS)
-extension implemented by the X server. It returns a major and minor version
+extension implemented by the X server. It returns a major and minor version
number. The major version number will be incremented for protocol incompatible
-changes, and the minor version number will be incremented for small, upward
+changes, and the minor version number will be incremented for small, upward
compatible changes.
.SH "RETURN VALUES"
.TP 15
TRUE
-The
-.I DPMSGetVersion
+The
+.I DPMSGetVersion
function returns TRUE when the extension is supported and values are returned.
.TP 15
FALSE
-The
-.I DPMSGetVersion
+The
+.I DPMSGetVersion
function returns FALSE when the extension is not supported.
.SH "SEE ALSO"
.BR DPMSCapable (__libmansuffix__),
diff --git a/man/DPMSInfo.man b/man/DPMSInfo.man
index 2a958ba..31ab29c 100644
--- a/man/DPMSInfo.man
+++ b/man/DPMSInfo.man
@@ -1,5 +1,5 @@
.\" Copyright \(co Digital Equipment Corporation, 1996
-.\"
+.\"
.\" Permission to use, copy, modify, distribute, and sell this
.\" documentation for any purpose is hereby granted without fee,
.\" provided that the above copyright notice and this permission
@@ -30,7 +30,7 @@
.\" DEALINGS IN THE SOFTWARE.
.\"
.\" X Window System is a trademark of The Open Group.
-.\"
+.\"
.TH DPMSInfo __libmansuffix__ __xorgversion__ "X FUNCTIONS"
.SH NAME
DPMSInfo \- returns information about the current DPMS state
@@ -47,7 +47,7 @@ DPMSInfo \- returns information about the current DPMS state
.br
CARD16 \fI*power_level\fP\^,
.br
- BOOL \fI*state\fP\^
+ BOOL \fI*state\fP\^
);
.if n .ti +5n
.if t .ti +.5i
@@ -63,24 +63,24 @@ Specifies the current power level
Specifies the current DPMS state
.SH DESCRIPTION
.LP
-The
-.I DPMSInfo
-function returns information about the current Display Power Management
-Signaling (DPMS) state. The \fIstate\fP
+The
+.I DPMSInfo
+function returns information about the current Display Power Management
+Signaling (DPMS) state. The \fIstate\fP
return parameter indicates whether or not DPMS is enabled \^(TRUE\^) or
-disabled \^(FALSE\^). The \fIpower_level\fP return parameter indicates the
+disabled \^(FALSE\^). The \fIpower_level\fP return parameter indicates the
current power level \^(one of DPMSModeOn, DPMSModeStandby, DPMSModeSuspend, or
DPMSModeOff.\^)
.SH "RETURN VALUES"
.TP 15
TRUE
-The
-.I DPMSInfo
+The
+.I DPMSInfo
function returns TRUE, if values are returned.
.TP 15
FALSE
-The
-.I DPMSInfo
+The
+.I DPMSInfo
function returns FALSE, if no values are returned.
.SH "SEE ALSO"
.BR DPMSEnable (__libmansuffix__)
diff --git a/man/DPMSQueryExtension.man b/man/DPMSQueryExtension.man
index be7b4fb..ab05a75 100644
--- a/man/DPMSQueryExtension.man
+++ b/man/DPMSQueryExtension.man
@@ -1,5 +1,5 @@
.\" Copyright \(co Digital Equipment Corporation, 1996
-.\"
+.\"
.\" Permission to use, copy, modify, distribute, and sell this
.\" documentation for any purpose is hereby granted without fee,
.\" provided that the above copyright notice and this permission
@@ -30,7 +30,7 @@
.\" DEALINGS IN THE SOFTWARE.
.\"
.\" X Window System is a trademark of The Open Group.
-.\"
+.\"
.TH DPMSQueryExtension __libmansuffix__ __xorgversion__ "X FUNCTIONS"
.SH NAME
DPMSQueryExtension \- queries the X server to determine the availability
@@ -48,7 +48,7 @@ of the DPMS Extension
.br
int \fI*event_base\fP\^,
.br
- int \fI*error_base\fP\^
+ int \fI*error_base\fP\^
);
.if n .ti +5n
.if t .ti +.5i
@@ -64,41 +64,41 @@ Specifies the return location for the assigned base event
Specifies the return location for the assigned base error
.SH DESCRIPTION
.LP
-The
-.I DPMSQueryExtension
+The
+.I DPMSQueryExtension
function queries the X server to determine the availability of the
-Display Power Management Signaling (DPMS)
+Display Power Management Signaling (DPMS)
Extension. If the extension is available, it returns TRUE, and the
.I event_base
-and
+and
.I error_base
-are set to the base event and error numbers, respectively. Otherwise, the
-return value is FALSE, and the
+are set to the base event and error numbers, respectively. Otherwise, the
+return value is FALSE, and the
values of
.I event_base
-and
-.I error_base
+and
+.I error_base
are undefined.
.SH "RETURN VALUES"
.TP 15
TRUE
-The
-.I DPMSQueryExtension
-function returns TRUE if the extension is available,
+The
+.I DPMSQueryExtension
+function returns TRUE if the extension is available,
and
.I event_base
-and
+and
.I error_base
-are set to the base event number and base error number for the extension,
+are set to the base event number and base error number for the extension,
respectively.
.TP 15
FALSE
-The
-.I DPMSQueryExtension
+The
+.I DPMSQueryExtension
function returns FALSE if extension is not available, and the values of
.I event_base
-and
-.I error_base
+and
+.I error_base
are undefined.
.SH "SEE ALSO"
.BR DPMSGetVersion (__libmansuffix__)
diff --git a/man/DPMSSetTimeouts.man b/man/DPMSSetTimeouts.man
index 2026129..bf8f17f 100644
--- a/man/DPMSSetTimeouts.man
+++ b/man/DPMSSetTimeouts.man
@@ -1,5 +1,5 @@
.\" Copyright \(co Digital Equipment Corporation, 1996
-.\"
+.\"
.\" Permission to use, copy, modify, distribute, and sell this
.\" documentation for any purpose is hereby granted without fee,
.\" provided that the above copyright notice and this permission
@@ -30,7 +30,7 @@
.\" DEALINGS IN THE SOFTWARE.
.\"
.\" X Window System is a trademark of The Open Group.
-.\"
+.\"
.TH DPMSSetTimeouts __libmansuffix__ __xorgversion__ "X FUNCTIONS"
.SH NAME
DPMSSetTimeouts \- permits applications to set the timeout values
@@ -50,7 +50,7 @@ used by the X server for DPMS timings
.br
CARD16 \fIsuspend\fP\^,
.br
- CARD16 \fIoff\fP\^
+ CARD16 \fIoff\fP\^
);
.if n .ti +5n
.if t .ti +.5i
@@ -70,54 +70,54 @@ Specifies the new off timeout in seconds
.SH DESCRIPTION
.LP
The DPMSSetTimeouts function permits applications to set the timeout values
-used by the X server for Display Power Management Signaling (DPMS) timings.
+used by the X server for Display Power Management Signaling (DPMS) timings.
.LP
-The value \fIstandby\fP is the amount of inactivity time, in seconds, before
-standby mode is invoked. The actual
-effects of this mode are dependent on the characteristics of the monitor and
-frame buffer card. Standby mode is
-implemented by shutting off the horizontal sync signal, and pulsing the vertical
-sync signal. Standby mode
-provides the quickest monitor recovery time. Note also that many monitors
-implement this mode identical to
+The value \fIstandby\fP is the amount of inactivity time, in seconds, before
+standby mode is invoked. The actual
+effects of this mode are dependent on the characteristics of the monitor and
+frame buffer card. Standby mode is
+implemented by shutting off the horizontal sync signal, and pulsing the vertical
+sync signal. Standby mode
+provides the quickest monitor recovery time. Note also that many monitors
+implement this mode identical to
suspend mode. A value of zero disables the standby mode.
.LP
-The value \fIsuspend\fP is the amount of time of inactivity, in seconds, before
-the second level of power
-savings is invoked. Suspend mode's physical and electrical characteristics are
-implementation defined. For DPMS
-compliant hardware, setting the suspend mode is implemented by pulsing the
-horizontal sync signal and
-shutting off the vertical sync signal. In general, suspend mode recovery is
-considered to be slower than
-standby mode, but faster than off mode. However it may vary from monitor to
-monitor. As noted above, many
-monitors implement this mode identical to the standby mode. A value of zero
+The value \fIsuspend\fP is the amount of time of inactivity, in seconds, before
+the second level of power
+savings is invoked. Suspend mode's physical and electrical characteristics are
+implementation defined. For DPMS
+compliant hardware, setting the suspend mode is implemented by pulsing the
+horizontal sync signal and
+shutting off the vertical sync signal. In general, suspend mode recovery is
+considered to be slower than
+standby mode, but faster than off mode. However it may vary from monitor to
+monitor. As noted above, many
+monitors implement this mode identical to the standby mode. A value of zero
disables this mode.
.LP
-The value \fIoff\fP is the amount of time of inactivity,in seconds, before the
-third and final level of power
-savings is invoked. Off mode's physical and electrical characteristics are
-implementation defined. In DPMS
-compliant hardware, it is implemented by shutting off both horizontal and
-vertical sync signals, resulting in
-powering down of the monitor. Recovery time is implementation dependent.
-Usually the recovery time is very
+The value \fIoff\fP is the amount of time of inactivity,in seconds, before the
+third and final level of power
+savings is invoked. Off mode's physical and electrical characteristics are
+implementation defined. In DPMS
+compliant hardware, it is implemented by shutting off both horizontal and
+vertical sync signals, resulting in
+powering down of the monitor. Recovery time is implementation dependent.
+Usually the recovery time is very
close to the power-up time of the monitor. A value of zero disables this mode.
.LP
-Chronologically, \fIstandby\fP mode occurs before or simultaneously with
-\fIsuspend\fP mode, and
-\fIsuspend\fP mode must occur before or simultaneously with \fIoff\fP mode.
-Therefore, non-zero mode timeout
-values must be greater than or equal to the timeout values of earlier modes. If
-inconsistent values are
+Chronologically, \fIstandby\fP mode occurs before or simultaneously with
+\fIsuspend\fP mode, and
+\fIsuspend\fP mode must occur before or simultaneously with \fIoff\fP mode.
+Therefore, non-zero mode timeout
+values must be greater than or equal to the timeout values of earlier modes. If
+inconsistent values are
supplied, a BadValue error will result.
.SH "RETURN VALUES"
.TP 15
TRUE
-The
-.I DPMSSetTimeouts
-function returns TRUE when the function has succeeded.
+The
+.I DPMSSetTimeouts
+function returns TRUE when the function has succeeded.
.SH ERRORS
.TP 15
.SM BadValue
diff --git a/man/XShape.man b/man/XShape.man
index de1873a..44fedfe 100644
--- a/man/XShape.man
+++ b/man/XShape.man
@@ -1,26 +1,26 @@
.\" Copyright (c) 1989, 1994 X Consortium
-.\"
+.\"
.\" Permission is hereby granted, free of charge, to any person obtaining a
-.\" copy of this software and associated documentation files (the "Software"),
-.\" to deal in the Software without restriction, including without limitation
-.\" the rights to use, copy, modify, merge, publish, distribute, sublicense,
-.\" and/or sell copies of the Software, and to permit persons to whom the
+.\" copy of this software and associated documentation files (the "Software"),
+.\" to deal in the Software without restriction, including without limitation
+.\" the rights to use, copy, modify, merge, publish, distribute, sublicense,
+.\" and/or sell copies of the Software, and to permit persons to whom the
.\" Software furnished to do so, subject to the following conditions:
-.\"
+.\"
.\" The above copyright notice and this permission notice shall be included in
.\" all copies or substantial portions of the Software.
-.\"
+.\"
.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
.\" IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-.\" THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-.\" WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
-.\" OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+.\" THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+.\" WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
+.\" OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
.\" SOFTWARE.
-.\"
-.\" Except as contained in this notice, the name of the X Consortium shall not
-.\" be used in advertising or otherwise to promote the sale, use or other
-.\" dealing in this Software without prior written authorization from the
+.\"
+.\" Except as contained in this notice, the name of the X Consortium shall not
+.\" be used in advertising or otherwise to promote the sale, use or other
+.\" dealing in this Software without prior written authorization from the
.\" X Consortium.
.\"
.de ZN
@@ -36,89 +36,89 @@ XShapeQueryExtension, XShapeQueryVersion, XShapeCombineRegion, XShapeCombineRect
\&#include <X11/extensions/shape.h>
.LP
Bool XShapeQueryExtension (
- Display *dpy,
- int *event_basep,
+ Display *dpy,
+ int *event_basep,
int *error_basep);
.LP
Status XShapeQueryVersion (
- Display *dpy,
- int *major_versionp,
+ Display *dpy,
+ int *major_versionp,
int *minor_versionp);
.LP
void XShapeCombineRegion (
- Display *dpy,
- Window dest,
- int destKind,
- int xOff,
- int yOff,
- struct _XRegion *r,
+ Display *dpy,
+ Window dest,
+ int destKind,
+ int xOff,
+ int yOff,
+ struct _XRegion *r,
int op);
.LP
void XShapeCombineRectangles (
- Display *dpy,
- XID dest,
- int destKind,
- int xOff,
- int yOff,
- XRectangle *rects,
- int n_rects,
- int op,
+ Display *dpy,
+ XID dest,
+ int destKind,
+ int xOff,
+ int yOff,
+ XRectangle *rects,
+ int n_rects,
+ int op,
int ordering);
.LP
void XShapeCombineMask (
- Display *dpy,
- XID dest,
- int destKind,
- int xOff,
- int yOff,
- Pixmap src,
+ Display *dpy,
+ XID dest,
+ int destKind,
+ int xOff,
+ int yOff,
+ Pixmap src,
int op);
.LP
void XShapeCombineShape (
- Display *dpy,
- XID dest,
- int destKind,
- int xOff,
- int yOff,
- Pixmap src,
- int srcKind,
+ Display *dpy,
+ XID dest,
+ int destKind,
+ int xOff,
+ int yOff,
+ Pixmap src,
+ int srcKind,
int op);
.LP
void XShapeOffsetShape (
- Display *dpy,
- XID dest,
- int destKind,
- int xOff,
+ Display *dpy,
+ XID dest,
+ int destKind,
+ int xOff,
int yOff);
.LP
Status XShapeQueryExtents (
- Display *dpy,
- Window window,
- int *bShaped,
- int *xbs,
- int *ybs,
- unsigned int *wbs,
- unsigned int *hbs,
- int *cShaped,
- int *xcs,
- int *ycs,
- unsigned int *wcs,
+ Display *dpy,
+ Window window,
+ int *bShaped,
+ int *xbs,
+ int *ybs,
+ unsigned int *wbs,
+ unsigned int *hbs,
+ int *cShaped,
+ int *xcs,
+ int *ycs,
+ unsigned int *wcs,
unsigned int *hcs);
.LP
void XShapeSelectInput (
- Display *dpy,
- Window window,
+ Display *dpy,
+ Window window,
unsigned longmask);
.LP
unsigned long XShapeInputSelected (
- Display *dpy,
+ Display *dpy,
Window window);
.LP
XRectangle *XShapeGetRectangles (
- Display *dpy,
- Window window,
- int kind,
- int *count,
+ Display *dpy,
+ Window window,
+ int kind,
+ int *count,
int *ordering);
.fi
.SH STRUCTURES
diff --git a/man/XShm.man b/man/XShm.man
index 06284f0..7fe3125 100644
--- a/man/XShm.man
+++ b/man/XShm.man
@@ -1,26 +1,26 @@
.\" Copyright (c) 1991 X Consortium
-.\"
+.\"
.\" Permission is hereby granted, free of charge, to any person obtaining a
-.\" copy of this software and associated documentation files (the "Software"),
-.\" to deal in the Software without restriction, including without limitation
-.\" the rights to use, copy, modify, merge, publish, distribute, sublicense,
-.\" and/or sell copies of the Software, and to permit persons to whom the
+.\" copy of this software and associated documentation files (the "Software"),
+.\" to deal in the Software without restriction, including without limitation
+.\" the rights to use, copy, modify, merge, publish, distribute, sublicense,
+.\" and/or sell copies of the Software, and to permit persons to whom the
.\" Software furnished to do so, subject to the following conditions:
-.\"
+.\"
.\" The above copyright notice and this permission notice shall be included in
.\" all copies or substantial portions of the Software.
-.\"
+.\"
.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
.\" IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-.\" THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-.\" WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
-.\" OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+.\" THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+.\" WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
+.\" OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
.\" SOFTWARE.
-.\"
-.\" Except as contained in this notice, the name of the X Consortium shall not
-.\" be used in advertising or otherwise to promote the sale, use or other
-.\" dealing in this Software without prior written authorization from the
+.\"
+.\" Except as contained in this notice, the name of the X Consortium shall not
+.\" be used in advertising or otherwise to promote the sale, use or other
+.\" dealing in this Software without prior written authorization from the
.\" X Consortium.
.\"
.\" Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved.
diff --git a/man/XcupGetReservedColormapEntries.man b/man/XcupGetReservedColormapEntries.man
index 35ad129..6fb8b9f 100644
--- a/man/XcupGetReservedColormapEntries.man
+++ b/man/XcupGetReservedColormapEntries.man
@@ -19,9 +19,9 @@
.\" LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
.\" FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
.\" DEALINGS IN THE SOFTWARE.
-.\"
+.\"
.\" X Window System is a trademark of The Open Group.
-.\"
+.\"
.de ZN
.ie t \fB\^\\$1\^\fR\\$2
.el \fI\^\\$1\^\fP\\$2
@@ -35,7 +35,7 @@ XcupGetReservedColormapEntries \- list colormap entries reserved by the system
\fBcc\fR [ \fIflag\fR \&.\&.\&. ] \fIfile\fR \&.\&.\&. -\fBlXext\fR [ \fIlibrary\fR \&.\&.\&. ]
\&#include <X11/extensions/Xcup.h>
.HP
-Status \fBXcupGetReservedColormapEntries\fP\^(\^Display *\fIdisplay\fP\^,
+Status \fBXcupGetReservedColormapEntries\fP\^(\^Display *\fIdisplay\fP\^,
int \fIscreen\fP\^, XColor **\fIcolors_out\fP\^, int *\fIncolors\fP\^);
.if n .ti +5n
.if t .ti +.5i
@@ -50,20 +50,20 @@ Returns the values reserved by the server.
Returns the number of items in \fIcolors_out\fP.
.SH DESCRIPTION
.LP
-The
-.ZN XcupGetReservedColormapEntries
+The
+.ZN XcupGetReservedColormapEntries
function returns a list of colormap entries (pixels) that are reserved
-by the system. This list will, at a minimum, contain entries for the
-BlackPixel and WhitePixel of the specified screen. Use
-.ZN XFree
-to free
+by the system. This list will, at a minimum, contain entries for the
+BlackPixel and WhitePixel of the specified screen. Use
+.ZN XFree
+to free
.I colors_out.
.LP
To minimize colormap flash, an application which installs its own private
colormap should query the special colors by calling
-.ZN XCupGetReservedColormapEntries ,
+.ZN XCupGetReservedColormapEntries ,
and can then store those entries (in the
-proper location) in its private colormap using
+proper location) in its private colormap using
.ZN XCupStoreColors .
.SH "SEE ALSO"
.BR XcupQueryVersion (3Xext),
diff --git a/man/XcupQueryVersion.man b/man/XcupQueryVersion.man
index c32ec5a..7bfa4aa 100644
--- a/man/XcupQueryVersion.man
+++ b/man/XcupQueryVersion.man
@@ -21,7 +21,7 @@
.\" DEALINGS IN THE SOFTWARE.
.\"
.\" X Window System is a trademark of The Open Group.
-.\"
+.\"
.de ZN
.ie t \fB\^\\$1\^\fR\\$2
.el \fI\^\\$1\^\fP\\$2
@@ -35,7 +35,7 @@ XcupQueryVersion \- Returns TOG-CUP protocol version supported by the X server
\fBcc\fR [ \fIflag\fR \&.\&.\&. ] \fIfile\fR \&.\&.\&. -\fBlXext\fR [ \fIlibrary\fR \&.\&.\&. ]
\&#include <X11/extensions/Xcup.h>
.HP
-Status \fBXcupQueryVersion\fP\^(\^Display *\fIdisplay\fP\^,
+Status \fBXcupQueryVersion\fP\^(\^Display *\fIdisplay\fP\^,
int *\fImajor_version_return\fP\^, int *\fIminor_version_return\fP\^);
.if n .ti +5n
.if t .ti +.5i
@@ -48,11 +48,11 @@ Returns the major version supported by the server
Returns the minor version supported by the server
.SH DESCRIPTION
.LP
-.ZN XcupQueryVersion
-sets
-.I major_version_return
-and
-.I minor_version_return
+.ZN XcupQueryVersion
+sets
+.I major_version_return
+and
+.I minor_version_return
to the major and minor TOG-CUP protocol version supported by the
server. If the TOG-CUP library is compatible with the version returned
by the server, it returns nonzero. If the server does not support the TOG-CUP
@@ -62,10 +62,10 @@ incompatible, it returns zero. No other Xcup functions may be called
before this function. If a client violates this rule, the effects of
all subsequent Xcup calls that it makes are undefined.
.LP
-To get the list of reserved colormap entries, use
+To get the list of reserved colormap entries, use
.ZN XcupGetReservedColormapEntries.
.LP
-To allocate one or more read-only color cells with RGB values, use
+To allocate one or more read-only color cells with RGB values, use
.ZN XcupStoreColors.
.SH "SEE ALSO"
.BR XcupGetReservedColormapEntries (3Xext),
diff --git a/man/XcupStoreColors.man b/man/XcupStoreColors.man
index 9e064da..255f856 100644
--- a/man/XcupStoreColors.man
+++ b/man/XcupStoreColors.man
@@ -19,9 +19,9 @@
.\" LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
.\" FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
.\" DEALINGS IN THE SOFTWARE.
-.\"
+.\"
.\" X Window System is a trademark of The Open Group.
-.\"
+.\"
.de ZN
.ie t \fB\^\\$1\^\fR\\$2
.el \fI\^\\$1\^\fP\\$2
@@ -50,27 +50,27 @@ Specifies and returns the values actually used in the colormap
Specifies the number of items in colors_in_out
.SH DESCRIPTION
.LP
-The
-.ZN XcupStoreColors
+The
+.ZN XcupStoreColors
function changes the colormap entries of the pixel values in the pixel
members of the XColor structures. The colormap entries are allocated
as if an AllocColor has been used instead, i.e. the colors are
read-only (shareable).
-.ZN XcupStoreColors
+.ZN XcupStoreColors
returns the number of colors that were successfully allocated in the colormap.
.LP
-A
-.ZN Value
+A
+.ZN Value
error is generated if a pixel is not a valid index into the colormap. A
-.ZN BadMatch
+.ZN BadMatch
error is generated if the colormap does not belong to a GrayScale,
PseudoColor, or DirectColor visual.
.LP
Applications which allocate many colors in a screen's default colormap, e.g.
-a color-cube or a gray-ramp, should allocate them with
+a color-cube or a gray-ramp, should allocate them with
.ZN XCupStoreColors .
-By using XCupStoreColors the colors will be allocated sharable (read-only)
-and any other application which allocates the same color will share that
+By using XCupStoreColors the colors will be allocated sharable (read-only)
+and any other application which allocates the same color will share that
color cell.
.SH "SEE ALSO"
.BR XcupQueryVersion (3Xext),
diff --git a/man/XdbeAllocateBackBufferName.man b/man/XdbeAllocateBackBufferName.man
index aa4704e..1a187a9 100644
--- a/man/XdbeAllocateBackBufferName.man
+++ b/man/XdbeAllocateBackBufferName.man
@@ -1,26 +1,26 @@
.\" Copyright (c) 1995 Hewlett-Packard Company
-.\"
+.\"
.\" Permission is hereby granted, free of charge, to any person obtaining a
-.\" copy of this software and associated documentation files (the "Software"),
-.\" to deal in the Software without restriction, including without limitation
-.\" the rights to use, copy, modify, merge, publish, distribute, sublicense,
-.\" and/or sell copies of the Software, and to permit persons to whom the
+.\" copy of this software and associated documentation files (the "Software"),
+.\" to deal in the Software without restriction, including without limitation
+.\" the rights to use, copy, modify, merge, publish, distribute, sublicense,
+.\" and/or sell copies of the Software, and to permit persons to whom the
.\" Software furnished to do so, subject to the following conditions:
-.\"
+.\"
.\" The above copyright notice and this permission notice shall be included in
.\" all copies or substantial portions of the Software.
-.\"
+.\"
.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
.\" IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-.\" HEWLETT-PACKARD COMPANY BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-.\" WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
-.\" OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+.\" HEWLETT-PACKARD COMPANY BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+.\" WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
+.\" OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
.\" SOFTWARE.
-.\"
-.\" Except as contained in this notice, the name of the Hewlett-Packard Company shall not
-.\" be used in advertising or otherwise to promote the sale, use or other
-.\" dealing in this Software without prior written authorization from the
+.\"
+.\" Except as contained in this notice, the name of the Hewlett-Packard Company shall not
+.\" be used in advertising or otherwise to promote the sale, use or other
+.\" dealing in this Software without prior written authorization from the
.\" Hewlett-Packard Company.
.\"
.TH XdbeAllocateBackBufferName __libmansuffix__ __xorgversion__ "X FUNCTIONS"
@@ -31,17 +31,17 @@ XdbeAllocateBackBufferName - allocates a DBE buffer.
XdbeBackBuffer XdbeAllocateBackBufferName(
Display *dpy,
- Window window,
+ Window window,
XdbeSwapAction swap_action)
.SH DESCRIPTION
-This function returns a drawable ID used to refer to the back buffer of the
-specified window. The swap_action is a hint to indicate the swap action that
+This function returns a drawable ID used to refer to the back buffer of the
+specified window. The swap_action is a hint to indicate the swap action that
will likely be used in subsequent calls to
.B XdbeSwapBuffers().
The actual swap
action used in calls to
.B XdbeSwapBuffers()
-does not have to be the same as the
+does not have to be the same as the
swap_action passed to this function, though clients are encouraged to provide
accurate information whenever possible.
.SH ERRORS
diff --git a/man/XdbeBeginIdiom.man b/man/XdbeBeginIdiom.man
index af7dca4..18ee070 100644
--- a/man/XdbeBeginIdiom.man
+++ b/man/XdbeBeginIdiom.man
@@ -1,26 +1,26 @@
.\" Copyright (c) 1995 Hewlett-Packard Company
-.\"
+.\"
.\" Permission is hereby granted, free of charge, to any person obtaining a
-.\" copy of this software and associated documentation files (the "Software"),
-.\" to deal in the Software without restriction, including without limitation
-.\" the rights to use, copy, modify, merge, publish, distribute, sublicense,
-.\" and/or sell copies of the Software, and to permit persons to whom the
+.\" copy of this software and associated documentation files (the "Software"),
+.\" to deal in the Software without restriction, including without limitation
+.\" the rights to use, copy, modify, merge, publish, distribute, sublicense,
+.\" and/or sell copies of the Software, and to permit persons to whom the
.\" Software furnished to do so, subject to the following conditions:
-.\"
+.\"
.\" The above copyright notice and this permission notice shall be included in
.\" all copies or substantial portions of the Software.
-.\"
+.\"
.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
.\" IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-.\" HEWLETT-PACKARD COMPANY BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-.\" WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
-.\" OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+.\" HEWLETT-PACKARD COMPANY BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+.\" WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
+.\" OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
.\" SOFTWARE.
-.\"
-.\" Except as contained in this notice, the name of the Hewlett-Packard Company shall not
-.\" be used in advertising or otherwise to promote the sale, use or other
-.\" dealing in this Software without prior written authorization from the
+.\"
+.\" Except as contained in this notice, the name of the Hewlett-Packard Company shall not
+.\" be used in advertising or otherwise to promote the sale, use or other
+.\" dealing in this Software without prior written authorization from the
.\" Hewlett-Packard Company.
.\"
.TH DBE __libmansuffix__ __xorgversion__ "X FUNCTIONS"
diff --git a/man/XdbeDeallocateBackBufferName.man b/man/XdbeDeallocateBackBufferName.man
index 92b7da2..a128649 100644
--- a/man/XdbeDeallocateBackBufferName.man
+++ b/man/XdbeDeallocateBackBufferName.man
@@ -1,26 +1,26 @@
.\" Copyright (c) 1995 Hewlett-Packard Company
-.\"
+.\"
.\" Permission is hereby granted, free of charge, to any person obtaining a
-.\" copy of this software and associated documentation files (the "Software"),
-.\" to deal in the Software without restriction, including without limitation
-.\" the rights to use, copy, modify, merge, publish, distribute, sublicense,
-.\" and/or sell copies of the Software, and to permit persons to whom the
+.\" copy of this software and associated documentation files (the "Software"),
+.\" to deal in the Software without restriction, including without limitation
+.\" the rights to use, copy, modify, merge, publish, distribute, sublicense,
+.\" and/or sell copies of the Software, and to permit persons to whom the
.\" Software furnished to do so, subject to the following conditions:
-.\"
+.\"
.\" The above copyright notice and this permission notice shall be included in
.\" all copies or substantial portions of the Software.
-.\"
+.\"
.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
.\" IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-.\" HEWLETT-PACKARD COMPANY BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-.\" WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
-.\" OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+.\" HEWLETT-PACKARD COMPANY BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+.\" WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
+.\" OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
.\" SOFTWARE.
-.\"
-.\" Except as contained in this notice, the name of the Hewlett-Packard Company shall not
-.\" be used in advertising or otherwise to promote the sale, use or other
-.\" dealing in this Software without prior written authorization from the
+.\"
+.\" Except as contained in this notice, the name of the Hewlett-Packard Company shall not
+.\" be used in advertising or otherwise to promote the sale, use or other
+.\" dealing in this Software without prior written authorization from the
.\" Hewlett-Packard Company.
.\"
.TH XdbeDeallocateBackBufferName __libmansuffix__ __xorgversion__ "X FUNCTIONS"
diff --git a/man/XdbeEndIdiom.man b/man/XdbeEndIdiom.man
index c5600f2..9218ef5 100644
--- a/man/XdbeEndIdiom.man
+++ b/man/XdbeEndIdiom.man
@@ -1,26 +1,26 @@
.\" Copyright (c) 1995 Hewlett-Packard Company
-.\"
+.\"
.\" Permission is hereby granted, free of charge, to any person obtaining a
-.\" copy of this software and associated documentation files (the "Software"),
-.\" to deal in the Software without restriction, including without limitation
-.\" the rights to use, copy, modify, merge, publish, distribute, sublicense,
-.\" and/or sell copies of the Software, and to permit persons to whom the
+.\" copy of this software and associated documentation files (the "Software"),
+.\" to deal in the Software without restriction, including without limitation
+.\" the rights to use, copy, modify, merge, publish, distribute, sublicense,
+.\" and/or sell copies of the Software, and to permit persons to whom the
.\" Software furnished to do so, subject to the following conditions:
-.\"
+.\"
.\" The above copyright notice and this permission notice shall be included in
.\" all copies or substantial portions of the Software.
-.\"
+.\"
.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
.\" IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-.\" HEWLETT-PACKARD COMPANY BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-.\" WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
-.\" OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+.\" HEWLETT-PACKARD COMPANY BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+.\" WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
+.\" OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
.\" SOFTWARE.
-.\"
-.\" Except as contained in this notice, the name of the Hewlett-Packard Company shall not
-.\" be used in advertising or otherwise to promote the sale, use or other
-.\" dealing in this Software without prior written authorization from the
+.\"
+.\" Except as contained in this notice, the name of the Hewlett-Packard Company shall not
+.\" be used in advertising or otherwise to promote the sale, use or other
+.\" dealing in this Software without prior written authorization from the
.\" Hewlett-Packard Company.
.\"
.TH XdbeEndIdiom __libmansuffix__ __xorgversion__ "X FUNCTIONS"
diff --git a/man/XdbeFreeVisualInfo.man b/man/XdbeFreeVisualInfo.man
index 3495345..04f9083 100644
--- a/man/XdbeFreeVisualInfo.man
+++ b/man/XdbeFreeVisualInfo.man
@@ -1,26 +1,26 @@
.\" Copyright (c) 1995 Hewlett-Packard Company
-.\"
+.\"
.\" Permission is hereby granted, free of charge, to any person obtaining a
-.\" copy of this software and associated documentation files (the "Software"),
-.\" to deal in the Software without restriction, including without limitation
-.\" the rights to use, copy, modify, merge, publish, distribute, sublicense,
-.\" and/or sell copies of the Software, and to permit persons to whom the
+.\" copy of this software and associated documentation files (the "Software"),
+.\" to deal in the Software without restriction, including without limitation
+.\" the rights to use, copy, modify, merge, publish, distribute, sublicense,
+.\" and/or sell copies of the Software, and to permit persons to whom the
.\" Software furnished to do so, subject to the following conditions:
-.\"
+.\"
.\" The above copyright notice and this permission notice shall be included in
.\" all copies or substantial portions of the Software.
-.\"
+.\"
.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
.\" IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-.\" HEWLETT-PACKARD COMPANY BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-.\" WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
-.\" OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+.\" HEWLETT-PACKARD COMPANY BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+.\" WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
+.\" OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
.\" SOFTWARE.
-.\"
-.\" Except as contained in this notice, the name of the Hewlett-Packard Company shall not
-.\" be used in advertising or otherwise to promote the sale, use or other
-.\" dealing in this Software without prior written authorization from the
+.\"
+.\" Except as contained in this notice, the name of the Hewlett-Packard Company shall not
+.\" be used in advertising or otherwise to promote the sale, use or other
+.\" dealing in this Software without prior written authorization from the
.\" Hewlett-Packard Company.
.\"
.TH XdbeFreeVisualInfo __libmansuffix__ __xorgversion__ "X FUNCTIONS"
diff --git a/man/XdbeGetBackBufferAttributes.man b/man/XdbeGetBackBufferAttributes.man
index b30f2c2..ac9d692 100644
--- a/man/XdbeGetBackBufferAttributes.man
+++ b/man/XdbeGetBackBufferAttributes.man
@@ -1,26 +1,26 @@
.\" Copyright (c) 1995 Hewlett-Packard Company
-.\"
+.\"
.\" Permission is hereby granted, free of charge, to any person obtaining a
-.\" copy of this software and associated documentation files (the "Software"),
-.\" to deal in the Software without restriction, including without limitation
-.\" the rights to use, copy, modify, merge, publish, distribute, sublicense,
-.\" and/or sell copies of the Software, and to permit persons to whom the
+.\" copy of this software and associated documentation files (the "Software"),
+.\" to deal in the Software without restriction, including without limitation
+.\" the rights to use, copy, modify, merge, publish, distribute, sublicense,
+.\" and/or sell copies of the Software, and to permit persons to whom the
.\" Software furnished to do so, subject to the following conditions:
-.\"
+.\"
.\" The above copyright notice and this permission notice shall be included in
.\" all copies or substantial portions of the Software.
-.\"
+.\"
.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
.\" IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-.\" HEWLETT-PACKARD COMPANY BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-.\" WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
-.\" OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+.\" HEWLETT-PACKARD COMPANY BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+.\" WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
+.\" OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
.\" SOFTWARE.
-.\"
-.\" Except as contained in this notice, the name of the Hewlett-Packard Company shall not
-.\" be used in advertising or otherwise to promote the sale, use or other
-.\" dealing in this Software without prior written authorization from the
+.\"
+.\" Except as contained in this notice, the name of the Hewlett-Packard Company shall not
+.\" be used in advertising or otherwise to promote the sale, use or other
+.\" dealing in this Software without prior written authorization from the
.\" Hewlett-Packard Company.
.\"
.TH XdbeGetBackBufferAttributes __libmansuffix__ __xorgversion__ "X FUNCTIONS"
@@ -42,14 +42,14 @@ structure has the following fields:
.RS
Window window window that buffer belongs to
.RE
-
+
If buffer is not a valid
.I XdbeBackBuffer,
window returns None.
The returned
.I XdbeBackBufferAttributes
-structure can be freed with the
+structure can be freed with the
Xlib function
.B Xfree().
.SH SEE ALSO
diff --git a/man/XdbeGetVisualInfo.man b/man/XdbeGetVisualInfo.man
index 9ebcd66..a4204e6 100644
--- a/man/XdbeGetVisualInfo.man
+++ b/man/XdbeGetVisualInfo.man
@@ -1,26 +1,26 @@
.\" Copyright (c) 1995 Hewlett-Packard Company
-.\"
+.\"
.\" Permission is hereby granted, free of charge, to any person obtaining a
-.\" copy of this software and associated documentation files (the "Software"),
-.\" to deal in the Software without restriction, including without limitation
-.\" the rights to use, copy, modify, merge, publish, distribute, sublicense,
-.\" and/or sell copies of the Software, and to permit persons to whom the
+.\" copy of this software and associated documentation files (the "Software"),
+.\" to deal in the Software without restriction, including without limitation
+.\" the rights to use, copy, modify, merge, publish, distribute, sublicense,
+.\" and/or sell copies of the Software, and to permit persons to whom the
.\" Software furnished to do so, subject to the following conditions:
-.\"
+.\"
.\" The above copyright notice and this permission notice shall be included in
.\" all copies or substantial portions of the Software.
-.\"
+.\"
.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
.\" IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-.\" HEWLETT-PACKARD COMPANY BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-.\" WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
-.\" OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+.\" HEWLETT-PACKARD COMPANY BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+.\" WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
+.\" OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
.\" SOFTWARE.
-.\"
-.\" Except as contained in this notice, the name of the Hewlett-Packard Company shall not
-.\" be used in advertising or otherwise to promote the sale, use or other
-.\" dealing in this Software without prior written authorization from the
+.\"
+.\" Except as contained in this notice, the name of the Hewlett-Packard Company shall not
+.\" be used in advertising or otherwise to promote the sale, use or other
+.\" dealing in this Software without prior written authorization from the
.\" Hewlett-Packard Company.
.\"
.TH XdbeGetVisualInfo __libmansuffix__ __xorgversion__ "X FUNCTIONS"
@@ -37,12 +37,12 @@ XdbeScreenVisualInfo *XdbeGetVisualInfo(
This function returns information about which visuals support double
buffering. The argument
.I num_screens
-specifies how many elements there are
+specifies how many elements there are
in the
.I screen_specifiers
list. Each drawable in
.I screen_specifiers
-designates a
+designates a
screen for which the supported visuals are being requested. If
.I num_screens
is zero, information for all screens is requested. In this case, upon return
@@ -55,7 +55,7 @@ pointer to a list of
structures of length
.I num_screens.
The nth
-element in the returned list corresponds to the nth drawable in the
+element in the returned list corresponds to the nth drawable in the
.I screen_specifiers
list, unless
.I num_screens
diff --git a/man/XdbeQueryExtension.man b/man/XdbeQueryExtension.man
index 4b50a6a..e465595 100644
--- a/man/XdbeQueryExtension.man
+++ b/man/XdbeQueryExtension.man
@@ -1,26 +1,26 @@
.\" Copyright (c) 1995 Hewlett-Packard Company
-.\"
+.\"
.\" Permission is hereby granted, free of charge, to any person obtaining a
-.\" copy of this software and associated documentation files (the "Software"),
-.\" to deal in the Software without restriction, including without limitation
-.\" the rights to use, copy, modify, merge, publish, distribute, sublicense,
-.\" and/or sell copies of the Software, and to permit persons to whom the
+.\" copy of this software and associated documentation files (the "Software"),
+.\" to deal in the Software without restriction, including without limitation
+.\" the rights to use, copy, modify, merge, publish, distribute, sublicense,
+.\" and/or sell copies of the Software, and to permit persons to whom the
.\" Software furnished to do so, subject to the following conditions:
-.\"
+.\"
.\" The above copyright notice and this permission notice shall be included in
.\" all copies or substantial portions of the Software.
-.\"
+.\"
.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
.\" IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-.\" HEWLETT-PACKARD COMPANY BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-.\" WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
-.\" OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+.\" HEWLETT-PACKARD COMPANY BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+.\" WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
+.\" OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
.\" SOFTWARE.
-.\"
-.\" Except as contained in this notice, the name of the Hewlett-Packard Company shall not
-.\" be used in advertising or otherwise to promote the sale, use or other
-.\" dealing in this Software without prior written authorization from the
+.\"
+.\" Except as contained in this notice, the name of the Hewlett-Packard Company shall not
+.\" be used in advertising or otherwise to promote the sale, use or other
+.\" dealing in this Software without prior written authorization from the
.\" Hewlett-Packard Company.
.\"
.TH XdbeQueryExtension __libmansuffix__ __xorgversion__ "X FUNCTIONS"
@@ -39,7 +39,7 @@ Sets
and
.I minor_version_return
to the major and minor
-DBE protocol version supported by the server. If the DBE library is
+DBE protocol version supported by the server. If the DBE library is
compatible with the version returned by the server, this function returns
non-zero. If
.I dpy
diff --git a/man/XdbeSwapBuffers.man b/man/XdbeSwapBuffers.man
index 2cd4b41..79d8af7 100644
--- a/man/XdbeSwapBuffers.man
+++ b/man/XdbeSwapBuffers.man
@@ -1,26 +1,26 @@
.\" Copyright (c) 1995 Hewlett-Packard Company
-.\"
+.\"
.\" Permission is hereby granted, free of charge, to any person obtaining a
-.\" copy of this software and associated documentation files (the "Software"),
-.\" to deal in the Software without restriction, including without limitation
-.\" the rights to use, copy, modify, merge, publish, distribute, sublicense,
-.\" and/or sell copies of the Software, and to permit persons to whom the
+.\" copy of this software and associated documentation files (the "Software"),
+.\" to deal in the Software without restriction, including without limitation
+.\" the rights to use, copy, modify, merge, publish, distribute, sublicense,
+.\" and/or sell copies of the Software, and to permit persons to whom the
.\" Software furnished to do so, subject to the following conditions:
-.\"
+.\"
.\" The above copyright notice and this permission notice shall be included in
.\" all copies or substantial portions of the Software.
-.\"
+.\"
.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
.\" IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-.\" HEWLETT-PACKARD COMPANY BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-.\" WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
-.\" OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+.\" HEWLETT-PACKARD COMPANY BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+.\" WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
+.\" OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
.\" SOFTWARE.
-.\"
-.\" Except as contained in this notice, the name of the Hewlett-Packard Company shall not
-.\" be used in advertising or otherwise to promote the sale, use or other
-.\" dealing in this Software without prior written authorization from the
+.\"
+.\" Except as contained in this notice, the name of the Hewlett-Packard Company shall not
+.\" be used in advertising or otherwise to promote the sale, use or other
+.\" dealing in this Software without prior written authorization from the
.\" Hewlett-Packard Company.
.\"
.TH XdbeSwapBuffers __libmansuffix__ __xorgversion__ "X FUNCTIONS"
diff --git a/man/Xevi.man b/man/Xevi.man
index f1e97c2..6f0d4b5 100644
--- a/man/Xevi.man
+++ b/man/Xevi.man
@@ -1,25 +1,25 @@
.\" Copyright (c) 1997 Silicon Graphics, Inc.
-.\"
+.\"
.\" Permission is hereby granted, free of charge, to any person obtaining a
-.\" copy of this software and associated documentation files (the "Software"),
-.\" to deal in the Software without restriction, including without limitation
-.\" the rights to use, copy, modify, merge, publish, distribute, sublicense,
-.\" and/or sell copies of the Software, and to permit persons to whom the
+.\" copy of this software and associated documentation files (the "Software"),
+.\" to deal in the Software without restriction, including without limitation
+.\" the rights to use, copy, modify, merge, publish, distribute, sublicense,
+.\" and/or sell copies of the Software, and to permit persons to whom the
.\" Software furnished to do so, subject to the following conditions:
-.\"
+.\"
.\" The above copyright notice and this permission notice shall be included in
.\" all copies or substantial portions of the Software.
-.\"
+.\"
.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
.\" IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-.\" SILICON GRAPHICS, INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-.\" WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
-.\" OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+.\" SILICON GRAPHICS, INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+.\" WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
+.\" OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
.\" SOFTWARE.
-.\"
-.\" Except as contained in this notice, the name of Silicon Graphics, Inc. shall not
-.\" be used in advertising or otherwise to promote the sale, use or other
+.\"
+.\" Except as contained in this notice, the name of Silicon Graphics, Inc. shall not
+.\" be used in advertising or otherwise to promote the sale, use or other
.\" dealing in this Software without prior written authorization from
.\" Silicon Graphics, Inc.
.\"
@@ -33,7 +33,7 @@ Bool
XeviQueryExtension (Display *dpy);
.LP
Bool
-XeviQueryVersion (Display *dpy,
+XeviQueryVersion (Display *dpy,
int *major_version_return,
int *minor_version_return);
.LP
@@ -59,7 +59,7 @@ and functions the same way as
will be called and the function will then return.
.PP
.BR XeviQueryExtension
-returns
+returns
.BR True
if the Extended Visual Information extension is available on the given display.
A client must call
@@ -79,15 +79,15 @@ and
.PP
.BR XeviGetVisualInfo
returns a list of ExtendedVisualInfo structures that describe
-visual information beyond that supported by the core protocol. This includes
+visual information beyond that supported by the core protocol. This includes
layer information relevant for systems supporting overlays and/or underlay
planes, and information that allows applications better to determine the level
-of hardware support for multiple colormaps. XeviGetVisualInfo returns
-.BR Success
+of hardware support for multiple colormaps. XeviGetVisualInfo returns
+.BR Success
if successful, or an X error otherwise.
If the argument
.I visual
-is NULL, then information for all visuals of all
+is NULL, then information for all visuals of all
screens is returned. Otherwise, it's a pointer to a list of visuals for which
extended visual information is desired.
.I n_visual
@@ -104,18 +104,18 @@ structure has the following fields:
.in +.5i
.nf
.ta 1.6i
-VisualID \fIcore_visual_id\fR
-int \fIscreen\fR
-int \fIlevel\fR
-unsigned int \fItransparency_type\fR
-unsigned int \fItransparency_value\fR
+VisualID \fIcore_visual_id\fR
+int \fIscreen\fR
+int \fIlevel\fR
+unsigned int \fItransparency_type\fR
+unsigned int \fItransparency_value\fR
unsigned int \fImin_hw_colormaps\fR
unsigned int \fImax_hw_colormaps\fR
unsigned int \fInum_colormap_conflicts\fR
VisualID * \fIcolormap_conflicts\fR
.fi
.LP
-The combination of
+The combination of
.I core_visual_id
and
.I screen
@@ -140,10 +140,10 @@ XEVI_TRANSPARENCY_NONE.
and
.I max_hw_colormaps
return the minimum and maximum number of hardware colormaps backing up the
-visual.
+visual.
.LP
.I num_colormap_conflicts
-returns the number of elements in
+returns the number of elements in
.I colormap_conflicts.
This array returns a list of visuals that may cause conflicts in the use of the
hardware colormap. For example, if a 12-bit hardware colormap is overloaded to
diff --git a/man/Xmbuf.man b/man/Xmbuf.man
index 7ddacb7..08e85b7 100644
--- a/man/Xmbuf.man
+++ b/man/Xmbuf.man
@@ -1,30 +1,30 @@
.\" Copyright (c) 1989, 1994 X Consortium
-.\"
+.\"
.\" Permission is hereby granted, free of charge, to any person obtaining a
-.\" copy of this software and associated documentation files (the "Software"),
-.\" to deal in the Software without restriction, including without limitation
-.\" the rights to use, copy, modify, merge, publish, distribute, sublicense,
-.\" and/or sell copies of the Software, and to permit persons to whom the
+.\" copy of this software and associated documentation files (the "Software"),
+.\" to deal in the Software without restriction, including without limitation
+.\" the rights to use, copy, modify, merge, publish, distribute, sublicense,
+.\" and/or sell copies of the Software, and to permit persons to whom the
.\" Software furnished to do so, subject to the following conditions:
-.\"
+.\"
.\" The above copyright notice and this permission notice shall be included in
.\" all copies or substantial portions of the Software.
-.\"
+.\"
.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
.\" IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-.\" THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-.\" WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
-.\" OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+.\" THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+.\" WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
+.\" OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
.\" SOFTWARE.
-.\"
-.\" Except as contained in this notice, the name of the X Consortium shall not
-.\" be used in advertising or otherwise to promote the sale, use or other
-.\" dealing in this Software without prior written authorization from the
+.\"
+.\" Except as contained in this notice, the name of the X Consortium shall not
+.\" be used in advertising or otherwise to promote the sale, use or other
+.\" dealing in this Software without prior written authorization from the
.\" X Consortium.
.\"
.\" Copyright 1989, Digital Equipment Corporation.
-.\" Permission to use, copy, modify, distribute, and sell this documentation
+.\" Permission to use, copy, modify, distribute, and sell this documentation
.\" for any purpose and without fee is hereby granted, provided that the above
.\" copyright notice and this permission notice appear in all copies.
.\" Digital Equipment Corporation makes no representations
@@ -191,14 +191,14 @@ and functions the same way as
will be called and the function will then return.
.PP
.ZN XmbufQueryExtension
-returns
+returns
.ZN True
-if the multibuffering/stereo
+if the multibuffering/stereo
extension is available on the
given display. If the extension exists, the value of the first event
code (which should be added to the event type constants
.ZN MultibufferClobberNotify
-and
+and
.ZN MultibufferUpdateNotify
to get the actual
values) is stored into event_base_return and the value of the first
@@ -207,19 +207,19 @@ error code (which should be added to the error type constant
to get the actual value) is stored into error_base_return.
.PP
.ZN XmbufGetVersion
-gets the major and minor version numbers of the extension.
+gets the major and minor version numbers of the extension.
The return
value is zero if an error occurs or non-zero if no error happens.
.PP
.ZN XmbufCreateBuffers
-requests that "count" buffers be
+requests that "count" buffers be
created with the given update_action
and update_hint and be associated with the indicated window. The
number of buffers created is returned (zero if an error occurred)
and buffers_update is filled in with that many Multibuffer identifiers.
.PP
.ZN XmbufDestroyBuffers
-destroys the buffers associated
+destroys the buffers associated
with the given window.
.PP
.ZN XmbufDisplayBuffers
@@ -230,15 +230,15 @@ No two buffers may be associated with the same window or else a Match
error is generated.
.PP
.ZN XmbufGetWindowAttributes
-gets the multibuffering attributes that apply
+gets the multibuffering attributes that apply
to all buffers associated
with the given window.
-The list of buffers returns may be freed with
+The list of buffers returns may be freed with
.ZN XFree .
Returns non-zero on success and zero if an error occurs.
.PP
.ZN XmbufChangeWindowAttributes
-sets the multibuffering attributes
+sets the multibuffering attributes
that apply to all buffers associated
with the given window. This is currently limited to the update_hint.
.PP
@@ -257,23 +257,23 @@ mono and stereo windows may be
created on the screen of the given drawable. The numbers of sets of
visual and depths are returned in nmono_return and nstereo_return. If
nmono_return is greater than zero, then mono_info_return is set to the
-address of an array of
+address of an array of
.ZN XmbufBufferInfo
structures describing the
various visuals and depths that may be used. Otherwise,
mono_info_return is set to NULL. Similarly, stereo_info_return is set
according to nstereo_return. The storage returned in mono_info_return
-and stereo_info_return may be released by
+and stereo_info_return may be released by
.ZN XFree .
If no errors are
encounted, non-zero will be returned.
.PP
.ZN XmbufCreateStereoWindow
-creates a stereo window in the same way that
+creates a stereo window in the same way that
.ZN XCreateWindow
creates a mono window. The buffer ids for the left and right buffers are
returned in left_return and right_return, respectively. If an
-extension error handler that returns is installed,
+extension error handler that returns is installed,
.ZN None
will be returned if the extension is not available on this display.
.SH PREDEFINED VALUES
@@ -281,7 +281,7 @@ will be returned if the extension is not available on this display.
Update_action field:
.in +.5i
.nf
-.ZN MultibufferUpdateActionUndefined
+.ZN MultibufferUpdateActionUndefined
.ZN MultibufferUpdateActionBackground
.ZN MultibufferUpdateActionUntouched
.ZN MultibufferUpdateActionCopied
@@ -291,9 +291,9 @@ Update_action field:
Update_hint field:
.in +.5i
.nf
-.ZN MultibufferUpdateHintFrequent
+.ZN MultibufferUpdateHintFrequent
.ZN MultibufferUpdateHintIntermittent
-.ZN MultibufferUpdateHintStatic
+.ZN MultibufferUpdateHintStatic
.in -.5i
.sp
.fi
@@ -308,20 +308,20 @@ Valuemask fields:
Mono vs. stereo and left vs. right:
.in +.5i
.nf
-.ZN MultibufferModeMono
+.ZN MultibufferModeMono
.ZN MultibufferModeStereo
.ZN MultibufferSideMono
.ZN MultibufferSideLeft
-.ZN MultibufferSideRight
+.ZN MultibufferSideRight
.in -.5i
.fi
.sp
Clobber state:
.in +.5i
.nf
-.ZN MultibufferUnclobbered
+.ZN MultibufferUnclobbered
.ZN MultibufferPartiallyClobbered
-.ZN MultibufferFullyClobbered
+.ZN MultibufferFullyClobbered
.in -.5i
.fi
.sp