summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorTim Kientzle <kientzle@gmail.com>2009-04-15 15:29:44 -0400
committerTim Kientzle <kientzle@gmail.com>2009-04-15 15:29:44 -0400
commit7c8c3ac1c16bdff6c54e41ce95d4d2ad50ed054b (patch)
treed81902bb5d9da1daeabaa2f9a02d60bd1346a187 /doc
parent0acacf737edf562c0172fbf98f2994694ea661d2 (diff)
downloadlibarchive-7c8c3ac1c16bdff6c54e41ce95d4d2ad50ed054b.tar.gz
Manpage touchups:
* Fix tar.1 to properly format the substitution arguments * Fix mdoc2wiki.awk to render .It Pa and .It Ev in bold * Update the translated docs on the wiki. SVN-Revision: 997
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/mdoc2wiki.awk3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/mdoc2wiki.awk b/doc/mdoc2wiki.awk
index 3f6cf22e..146d9619 100755
--- a/doc/mdoc2wiki.awk
+++ b/doc/mdoc2wiki.awk
@@ -411,8 +411,9 @@ function splitwords(l, dest, n, o, w) {
# Suppress trailer
w++
} else if(match(words[w+1],"^Pa$|^Ev$")) {
- add(".B")
+ addopen("*")
w++
+ add(words[++w] "*")
} else {
trailer = listnext[listdepth] "<dd>" trailer
listnext[listdepth] = "</dd>"