Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 2 Sep 2023 05:59:43 GMT
From:      Kyle Evans <kevans@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 07bc20e4740d - main - localedef: correct definition of right-parenthesis in default charmap
Message-ID:  <202309020559.3825xhaD064981@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by kevans:

URL: https://cgit.FreeBSD.org/src/commit/?id=07bc20e4740d09f554c3787bb1940fc503300822

commit 07bc20e4740d09f554c3787bb1940fc503300822
Author:     Kyle Evans <kevans@FreeBSD.org>
AuthorDate: 2023-09-02 05:56:31 +0000
Commit:     Kyle Evans <kevans@FreeBSD.org>
CommitDate: 2023-09-02 05:58:35 +0000

    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.
---
 usr.bin/localedef/charmap.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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",		 ','},



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202309020559.3825xhaD064981>