From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 551B215808A for ; Mon, 04 Aug 2025 12:13:57 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 3BF13340BD3 for ; Mon, 04 Aug 2025 12:13:57 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 2B4AC11036D; Mon, 04 Aug 2025 12:13:56 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 1E7B411036D for ; Mon, 04 Aug 2025 12:13:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CB5EA340B35 for ; Mon, 04 Aug 2025 12:13:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2BA93322B for ; Mon, 04 Aug 2025 12:13:54 +0000 (UTC) From: "Kerin Millar" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kerin Millar" Message-ID: <1754309554.5a08042d08eed2fa576f92388be97209e30bf8cf.kfm@gentoo> Subject: [gentoo-commits] proj/locale-gen:master commit in: / X-VCS-Repository: proj/locale-gen X-VCS-Files: locale-gen X-VCS-Directories: / X-VCS-Committer: kfm X-VCS-Committer-Name: Kerin Millar X-VCS-Revision: 5a08042d08eed2fa576f92388be97209e30bf8cf X-VCS-Branch: master Date: Mon, 04 Aug 2025 12:13:54 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: fbb32314-051a-4a6a-a271-2e95c706c833 X-Archives-Hash: 14984344a3de0b64ba64a6e37c50b7b7 commit: 5a08042d08eed2fa576f92388be97209e30bf8cf Author: Kerin Millar plushkava net> AuthorDate: Mon Aug 4 12:12:34 2025 +0000 Commit: Kerin Millar plushkava net> CommitDate: Mon Aug 4 12:12:34 2025 +0000 URL: https://gitweb.gentoo.org/proj/locale-gen.git/commit/?id=5a08042d Rewrap a comment in the parse_config sub The comment in question is now constrained to 80 columns, given a tab width of 8. Signed-off-by: Kerin Millar plushkava.net> locale-gen | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/locale-gen b/locale-gen index 7a6a0a1..b74d8d9 100755 --- a/locale-gen +++ b/locale-gen @@ -299,8 +299,8 @@ sub parse_config ($fh, $path, $locale_by, $charmap_by) { my @locales; while (my $line = readline $fh) { - # Skip comments and blank lines. Note that \h will match only " " and - # "\t", since the input stream is not being subjected to any decoding. + # Skip comments and blank lines. Note that \h will match only + # " " and "\t", since the input stream is not being decoded. next if $line =~ m/^\h*($|#)/; # Expect for two fields, separated by horizontal whitespace.