From bae5b9e215b72dc27c67c24c114021f213ba1058 Mon Sep 17 00:00:00 2001 From: Tim Kientzle Date: Sat, 21 Jun 2014 14:15:37 -0700 Subject: [PATCH] Replace \e with plain \ --- doc/mdoc2wiki.awk | 1 + 1 file changed, 1 insertion(+) 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 -- 2.47.2