summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2012-08-23 11:12:39 -0400
committerEric S. Raymond <esr@thyrsus.com>2012-08-23 11:12:39 -0400
commitf2b24dd74614ce807cacf764c6eddd834feffc5a (patch)
treef33c7c70a74df6a9bc92d1522c318ed8acd0c7ed
parent9daef33e32ba36c1f872691daeebbf98a73b4b25 (diff)
downloadxorg-lib-libXau-f2b24dd74614ce807cacf764c6eddd834feffc5a.tar.gz
Remove a use of tab stops.
-rw-r--r--man/Xau.man50
1 files changed, 24 insertions, 26 deletions
diff --git a/man/Xau.man b/man/Xau.man
index 46d4a19..d1b6603 100644
--- a/man/Xau.man
+++ b/man/Xau.man
@@ -29,22 +29,21 @@ Xau library: XauFileName, XauReadAuth, XauLockAuth, XauUnlockAuth,
XauWriteAuth, XauDisposeAuth,
XauGetAuthByAddr, XauGetBestAuthByAddr \- X authority database routines
.SH SYNOPSIS
-.B "#include <X11/Xauth.h>"
-.PP
+.ft CW
.nf
-.ta .5i 2i
+#include <X11/Xauth.h>
+
typedef struct xauth {
- unsigned short family;
- unsigned short address_length;
- char *address;
- unsigned short number_length;
- char *number;
- unsigned short name_length;
- char *name;
- unsigned short data_length;
- char *data;
+ unsigned short family;
+ unsigned short address_length;
+ char *address;
+ unsigned short number_length;
+ char *number;
+ unsigned short name_length;
+ char *name;
+ unsigned short data_length;
+ char *data;
} Xauth;
-
.HP
char *XauFileName (void);
.HP
@@ -68,7 +67,8 @@ int XauLockAuth (const char *\fIfile_name\fP\^, int \fIretries\fP\^, int
int XauUnlockAuth (const char *\fIfile_name\fP\^);
.HP
int XauDisposeAuth (Xauth *\fIauth\fP\^);
-.ft R
+.fi
+.ft
.SH DESCRIPTION
.PP
\fBXauFileName\fP generates the default authorization file name by first
@@ -106,18 +106,16 @@ files to be removed. \fIXauLockAuth\fP makes \fIretries\fP attempts to
create and link the file names, pausing \fItimeout\fP seconds between each
attempt. \fIXauLockAuth\fP returns a collection of values depending on the
results:
-.nf
-.ta .5i 2i
-
- LOCK_ERROR A system error occurred, either a file_name
- which is too long, or an unexpected failure from
- a system call. errno may prove useful.
-
- LOCK_TIMEOUT \fIretries\fP attempts failed
-
- LOCK_SUCCESS The lock succeeded.
-
-.fi
+.TP
+LOCK_ERROR
+A system error occurred, either a file_name which is too long, or an
+unexpected failure from a system call. errno may prove useful.
+.TP
+LOCK_TIMEOUT
+\fIretries\fP attempts failed
+.TP
+LOCK_SUCCESS
+The lock succeeded.
.PP
\fBXauUnlockAuth\fP undoes the work of \fIXauLockAuth\fP by unlinking both
the ``-c'' and ``-l'' file names.