summaryrefslogtreecommitdiff
path: root/macro2texi.py
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2009-08-01 10:38:59 +0200
committerPeter Simons <simons@cryp.to>2009-08-01 10:38:59 +0200
commit4514ffc1bc0ba1bd7ac82ef23f719f9cc0e623b9 (patch)
tree0b273a29d20fb7b84114c4bb50831f0199c4d6a4 /macro2texi.py
parent9a0cc863079f46410e4aad7bca78f544932197d4 (diff)
downloadautoconf-archive-4514ffc1bc0ba1bd7ac82ef23f719f9cc0e623b9.tar.gz
macro2texi.py: avoid word-wrapping in copyright lines
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__)