]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
Fix spacing around .Ar and .Cm macros.
authorAndres Mejia <amejia004@gmail.com>
Thu, 2 Feb 2012 22:48:18 +0000 (17:48 -0500)
committerAndres Mejia <amejia004@gmail.com>
Thu, 2 Feb 2012 22:48:18 +0000 (17:48 -0500)
SVN-Revision: 4229

doc/mdoc2mediawiki.awk

index fe6b164b53ecddd2f3b4f6f3d8824ac0382a938b..119eee0a3bd403044ecd3620a4c2151985097fed 100755 (executable)
@@ -258,16 +258,16 @@ function splitwords(l, dest, n, o, w) {
       addopen("-")
     } else if(match(words[w],"^Ar$")) {
       if(w==nwords)
-       add("''file ...''")
+       add("''file ...''" " ")
       else {
        ++w
        gsub("<", "&lt;", words[w])
-       add("''" words[w] "''")
+       add("''" words[w] "''" " ")
       }
     } else if(match(words[w],"^Cm$")) {
       ++w
       if (displaylines == 0) {
-       add("'''" words[w] "'''")
+       add("'''" words[w] "'''" " ")
       } else
        add(words[w])
     } else if(match(words[w],"^Op$")) {