From: Tim Kientzle Date: Mon, 13 Apr 2009 21:47:21 +0000 (-0400) Subject: Remove \& from the output. X-Git-Tag: v2.8.0~714 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=47bc4f73b59b846a759e6f0686ce2e1482f02db0;p=thirdparty%2Flibarchive.git Remove \& from the output. SVN-Revision: 983 --- diff --git a/doc/mdoc2wiki.awk b/doc/mdoc2wiki.awk index e30c20501..54a97903c 100755 --- a/doc/mdoc2wiki.awk +++ b/doc/mdoc2wiki.awk @@ -437,6 +437,7 @@ function splitwords(l, dest, n, o, w) { } else if(match(words[w],"^[\\\])}.,;:]$")) { addclose(words[w]) } else { + sub("\\\\&", "", words[w]) add(words[w]) } }