From: Tim Kientzle Date: Sat, 21 Jun 2014 21:15:37 +0000 (-0700) Subject: Replace \e with plain \ X-Git-Tag: v3.1.900a~285 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bae5b9e215b72dc27c67c24c114021f213ba1058;p=thirdparty%2Flibarchive.git Replace \e with plain \ --- diff --git a/doc/mdoc2wiki.awk b/doc/mdoc2wiki.awk index 3a3360289..eb89ba090 100755 --- a/doc/mdoc2wiki.awk +++ b/doc/mdoc2wiki.awk @@ -184,6 +184,7 @@ function splitwords(l, dest, n, o, w) { /^\.\\"/ { next } { + gsub("\\\\e", "\\") sub("^\\.","") nwords=splitwords($0, words) # TODO: Instead of iterating 'w' over the array, have a separate