summaryrefslogtreecommitdiff
path: root/macro2texi.py
diff options
context:
space:
mode:
Diffstat (limited to 'macro2texi.py')
-rwxr-xr-xmacro2texi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/macro2texi.py b/macro2texi.py
index 1445e2d..5a94efc 100755
--- a/macro2texi.py
+++ b/macro2texi.py
@@ -58,6 +58,6 @@ m = Macro(m4File)
m.synopsis = "@smallexample\n%s\n@end smallexample" % "\n".join(map(quoteTexi, m.synopsis))
m.description = '\n\n'.join(map(formatParagraph, m.description))
m.description = m.description.replace("@end smallexample\n@smallexample", "\n")
-m.authors = " @* ".join(map(formatAuthor, m.authors))
+m.authors = " @* ".join([ "@w{%s}" % formatAuthor(a) for a in m.authors ])
m.license = "\n\n".join(map(formatParagraph, m.license))
writeFile(outFile, tmpl % m.__dict__)