From 4514ffc1bc0ba1bd7ac82ef23f719f9cc0e623b9 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 1 Aug 2009 10:38:59 +0200 Subject: macro2texi.py: avoid word-wrapping in copyright lines --- macro2texi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'macro2texi.py') 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__) -- cgit v1.2.1