From 0846fc8181b6501849f77f2a19533b3d5c9c617d Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Sat, 6 Jun 2020 16:22:56 +0200 Subject: [PATCH] Manparser: Also replace \(cq escapes in the non-Deroff manparser I'm not entirely sure why we have multiple parsers here, but I'm guessing there's a reason. Fixes #7086. --- share/tools/create_manpage_completions.py | 1 + 1 file changed, 1 insertion(+) diff --git a/share/tools/create_manpage_completions.py b/share/tools/create_manpage_completions.py index 510c77bbd..2393ebc24 100755 --- a/share/tools/create_manpage_completions.py +++ b/share/tools/create_manpage_completions.py @@ -260,6 +260,7 @@ def remove_groff_formatting(data): data = data.replace("\-", "-") data = data.replace(".I", "") data = data.replace("\f", "") + data = data.replace("\(cq", "'") return data