From: Tim Kientzle Date: Sat, 21 Jun 2014 20:37:33 +0000 (-0700) Subject: start/end display cannot have extra trailing whitespace X-Git-Tag: v3.1.900a~287 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5c80ecf39bf7ac8997fb798b272516ee814822c7;p=thirdparty%2Flibarchive.git start/end display cannot have extra trailing whitespace --- diff --git a/doc/mdoc2wiki.awk b/doc/mdoc2wiki.awk index ff263d974..cf63b8482 100755 --- a/doc/mdoc2wiki.awk +++ b/doc/mdoc2wiki.awk @@ -123,12 +123,14 @@ function crossref(name, sect, other) { # Start an indented display function dispstart() { - linecmd("```text") + endline() + print "```text" } # End an indented display function dispend() { - linecmd("```") + endline() + print "```" } # Collect rest of input line