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.

Sponsored by:	Klara, Inc.
This commit is contained in:
Kyle Evans 2023-09-02 00:56:31 -05:00
parent 4a9cd9fc22
commit 07bc20e474

View file

@ -86,7 +86,7 @@ static const struct {
{ "ampersand", '&' },
{ "apostrophe", '\'' },
{ "left-parenthesis", '(' },
{ "right-parenthesis", '(' },
{ "right-parenthesis", ')' },
{ "asterisk", '*' },
{ "plus-sign", '+' },
{ "comma", ','},