aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Evans <kevans@FreeBSD.org>2023-09-02 05:56:31 +0000
committerKyle Evans <kevans@FreeBSD.org>2023-09-10 04:27:50 +0000
commit3d36161bc3aa90d329c10b10bbb27a17d33a2b13 (patch)
treecb531a359f6d315162b0cfc214d1eb75114f4bda
parent425c8e509df1c83a11bf887d2c70ff164fc9ca0f (diff)
downloadsrc-3d36161bc3aa90d329c10b10bbb27a17d33a2b13.tar.gz
src-3d36161bc3aa90d329c10b10bbb27a17d33a2b13.zip
localedef: correct definition of right-parenthesis in default charmap
It turns out that right parentheses do exist and are different than left parentheses, so let's switch to that. Approved by: re (kib) Sponsored by: Klara, Inc. (cherry picked from commit 07bc20e4740d09f554c3787bb1940fc503300822) (cherry picked from commit 8d98eb4e51eb1777b6bdb3682dbd7472c9cc2c71)
-rw-r--r--usr.bin/localedef/charmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/localedef/charmap.c b/usr.bin/localedef/charmap.c
index bc302965de1a..44b7e3292eae 100644
--- a/usr.bin/localedef/charmap.c
+++ b/usr.bin/localedef/charmap.c
@@ -86,7 +86,7 @@ static const struct {
{ "ampersand", '&' },
{ "apostrophe", '\'' },
{ "left-parenthesis", '(' },
- { "right-parenthesis", '(' },
+ { "right-parenthesis", ')' },
{ "asterisk", '*' },
{ "plus-sign", '+' },
{ "comma", ','},