commit: 5cc3eed537ffb9ae06854fe65923b8c4ee451248
Author: Kerin Millar <kfm <AT> plushkava <DOT> net>
AuthorDate: Wed Aug 13 22:52:52 2025 +0000
Commit: Kerin Millar <kfm <AT> plushkava <DOT> net>
CommitDate: Wed Aug 13 22:52:52 2025 +0000
URL: https://gitweb.gentoo.org/proj/locale-gen.git/commit/?id=5cc3eed5
Reformat a comment in the normalize() subroutine
Signed-off-by: Kerin Millar <kfm <AT> plushkava.net>
locale-gen | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/locale-gen b/locale-gen
index 7e313f5..27c1787 100755
--- a/locale-gen
+++ b/locale-gen
@@ -254,7 +254,7 @@ sub normalize ($canonical) {
if ($canonical !~ m/(?<=\.)[^@]+/p) {
die "Can't normalize " . render_printable($canonical);
} else {
- # en_US.UTF-8 => en_US.utf8
+ # en_US.UTF-8 => en_US.utf8
# de_DE.ISO-8859-15@euro => de_DE.iso885915@euro
my $codeset = lc ${^MATCH} =~ tr/0-9A-Za-z//cdr;
return ${^PREMATCH} . $codeset . ${^POSTMATCH};