summaryrefslogtreecommitdiff
path: root/python/build
diff options
context:
space:
mode:
authorBen Pfaff <blp@ovn.org>2018-11-08 21:39:53 -0800
committerBen Pfaff <blp@ovn.org>2019-01-10 15:52:05 -0800
commit63187cff997e7ccdccc8325ea15e31de77371a58 (patch)
treed7e2764713f6e7654f0a8f5c9c8ab45d6f389e9f /python/build
parent04895042e9f62dd738ef5424e45925a6637d03db (diff)
downloadopenvswitch-63187cff997e7ccdccc8325ea15e31de77371a58.tar.gz
nroff: Increase width for .IP used for ordered lists.
The ordered lists that a .25in width produced looked OK in PostScript or PDF output, but in text output every list item spanned two lines, like this: 1. First list item. 2. Second list item. With this change, they appear normally: 1. First list item. 2. Second list item. Acked-by: Mark Michelson <mmichels@redhat.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
Diffstat (limited to 'python/build')
-rw-r--r--python/build/nroff.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/build/nroff.py b/python/build/nroff.py
index 73353061c..17ff69bfe 100644
--- a/python/build/nroff.py
+++ b/python/build/nroff.py
@@ -316,7 +316,7 @@ def block_xml_to_nroff(nodes, para='.PP'):
if node.tagName == 'ul':
s += ".IP \\(bu\n"
else:
- s += ".IP %d. .25in\n" % i
+ s += ".IP %d. .4in\n" % i
s += block_xml_to_nroff(li_node.childNodes, ".IP")
elif li_node.nodeType == node.COMMENT_NODE:
pass