From dec9a7959cb88e4677cc1e95ae387ae56972f2a7 Mon Sep 17 00:00:00 2001 From: "Dr. Werner Fink" Date: Mon, 19 Sep 2022 13:12:58 +0000 Subject: [PATCH] Simple quote OBS-URL: https://build.opensuse.org/package/show/Base:System/bash?expand=0&rev=349 --- bash.changes | 6 ++++++ quotes-man2html.patch | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/bash.changes b/bash.changes index 08bc83d3..7a141afa 100644 --- a/bash.changes +++ b/bash.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Sep 19 13:11:05 UTC 2022 - Dr. Werner Fink + +- Small change in quotes-man2html.patch + * Use a simple "'" aka quote instead of "′" for "\(aq" + ------------------------------------------------------------------- Thu Sep 15 13:09:24 UTC 2022 - Dr. Werner Fink diff --git a/quotes-man2html.patch b/quotes-man2html.patch index 7b46eb11..61cb8c8e 100644 --- a/quotes-man2html.patch +++ b/quotes-man2html.patch @@ -13,7 +13,7 @@ boo#1203091 + if (charb[1] == 'q') { + switch (charb[0]) { + case 'a': -+ strncpy(charb, "′", 7); ++ strncpy(charb, "'", 7); + charb[7] = '\0'; + break; + case 'd':