From 7de78927edef0ece7cd732debf6c1b79889d345f Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 22 Aug 1999 11:02:39 +0000 Subject: [PATCH] Escape backslashes so tr's manual comes out right. Reported by Andreas Schwab. --- man/help2man | 2 ++ 1 file changed, 2 insertions(+) diff --git a/man/help2man b/man/help2man index 689d1acc2e..467391ae48 100755 --- a/man/help2man +++ b/man/help2man @@ -285,6 +285,8 @@ for (@help) $break = ''; } + s/\\/\\\\/g; + my $output = ''; while (length) { -- 2.47.3