summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2012-08-23 11:30:47 -0400
committerEric S. Raymond <esr@thyrsus.com>2012-08-23 11:30:47 -0400
commit356b3e6235be4cdb51f13249cb68c581c0fc50c7 (patch)
treeaa6f2308f82be763f3bdff87e34db2a7b61b84c0 /man
parent1e5e04a80b391ea6827bb3c537be47533c6afe1e (diff)
downloadxorg-lib-libXt-356b3e6235be4cdb51f13249cb68c581c0fc50c7.tar.gz
Eliminate use of tab stops.
Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
Diffstat (limited to 'man')
-rw-r--r--man/XtPopdown.man7
-rw-r--r--man/XtSetArg.man12
2 files changed, 7 insertions, 12 deletions
diff --git a/man/XtPopdown.man b/man/XtPopdown.man
index 85c5073..214536d 100644
--- a/man/XtPopdown.man
+++ b/man/XtPopdown.man
@@ -186,13 +186,12 @@ function casts the client data parameter to an
pointer:
.LP
.Ds 0
-.TA .5i 3i
-.ta .5i 3i
typedef struct {
- Widget shell_widget;
- Widget enable_widget;
+ Widget shell_widget;
+ Widget enable_widget;
} XtPopdownIDRec, *XtPopdownID;
.De
+.LP
The shell_widget is the pop-up shell to pop down,
and the enable_widget is the widget that was used to pop it up.
.LP
diff --git a/man/XtSetArg.man b/man/XtSetArg.man
index 1d2a8ed..ef822c4 100644
--- a/man/XtSetArg.man
+++ b/man/XtSetArg.man
@@ -158,14 +158,12 @@ function is usually used in a highly stylized manner to
minimize the probability of making a mistake; for example:
.LP
.Ds
-.TA .5i 3i
-.ta .5i 3i
Arg args[20];
int n;
n = 0;
-XtSetArg(args[n], XtNheight, 100); n++;
-XtSetArg(args[n], XtNwidth, 200); n++;
+XtSetArg(args[n], XtNheight, 100); n++;
+XtSetArg(args[n], XtNwidth, 200); n++;
XtSetValues(widget, args, n);
.De
.LP
@@ -174,11 +172,9 @@ and use
.ZN XtNumber :
.LP
.Ds
-.TA .5i 3i
-.ta .5i 3i
static Args args[] = {
- {XtNheight, (XtArgVal) 100},
- {XtNwidth, (XtArgVal) 200},
+ {XtNheight, (XtArgVal) 100},
+ {XtNwidth, (XtArgVal) 200},
};
XtSetValues(Widget, args, XtNumber(args));
.De