From patchwork Wed Sep 22 21:07:13 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Eggert X-Patchwork-Id: 45319 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id AC0393857C71 for ; Wed, 22 Sep 2021 21:07:26 +0000 (GMT) X-Original-To: libc-alpha@sourceware.org Delivered-To: libc-alpha@sourceware.org Received: from zimbra.cs.ucla.edu (zimbra.cs.ucla.edu [131.179.128.68]) by sourceware.org (Postfix) with ESMTPS id 273A33858401 for ; Wed, 22 Sep 2021 21:07:15 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 273A33858401 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=cs.ucla.edu Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=cs.ucla.edu Received: from localhost (localhost [127.0.0.1]) by zimbra.cs.ucla.edu (Postfix) with ESMTP id 6AA541600EA; Wed, 22 Sep 2021 14:07:14 -0700 (PDT) Received: from zimbra.cs.ucla.edu ([127.0.0.1]) by localhost (zimbra.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10032) with ESMTP id yFBTqeU-Hxgh; Wed, 22 Sep 2021 14:07:13 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by zimbra.cs.ucla.edu (Postfix) with ESMTP id A564A1600EB; Wed, 22 Sep 2021 14:07:13 -0700 (PDT) X-Virus-Scanned: amavisd-new at zimbra.cs.ucla.edu Received: from zimbra.cs.ucla.edu ([127.0.0.1]) by localhost (zimbra.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id q21UwEaSx5xx; Wed, 22 Sep 2021 14:07:13 -0700 (PDT) Received: from [192.168.1.9] (cpe-172-91-119-151.socal.res.rr.com [172.91.119.151]) by zimbra.cs.ucla.edu (Postfix) with ESMTPSA id 734C61600EA; Wed, 22 Sep 2021 14:07:13 -0700 (PDT) Subject: [PATCH] Allow UTF-8 in glibc commit messages To: Joseph Myers References: <20210921150048.9E05F3858C3A@sourceware.org> <084849f9-4446-4484-8a2c-4ea1b6c64af8@redhat.com> <248d8993-0798-511d-d2b6-c342afad28be@cs.ucla.edu> From: Paul Eggert Organization: UCLA Computer Science Department Message-ID: Date: Wed, 22 Sep 2021 14:07:13 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.13.0 MIME-Version: 1.0 In-Reply-To: Content-Language: en-US X-Spam-Status: No, score=-9.4 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_STATUS, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: libc-alpha Errors-To: libc-alpha-bounces+patchwork=sourceware.org@sourceware.org Sender: "Libc-alpha" On 9/22/21 4:55 AM, Joseph Myers wrote: > That's a matter of setting hooks.no-rh-character-range-check in > refs/meta/config:project.config. Thanks for pointing me at that setting, which I didn't know about. I now see that this issue is also glibc bug 27299. Proposed patch to the meta/config branch attached. From e08caa9ead42af8bb3d1fb41cd18af59b3098616 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Wed, 22 Sep 2021 14:02:06 -0700 Subject: [PATCH] Allow UTF-8 in commit messages (bug 27299) --- project.config | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/project.config b/project.config index 4284e9f9df..349bdde2db 100644 --- a/project.config +++ b/project.config @@ -7,6 +7,10 @@ # debugging session, error messages, logs, etc. max-rh-line-length = 0 + # Allow UTF-8 in commit messages, instead of requiring + # them to use ISO-8859-15. + no-rh-character-range-check = true + # We allow a 5MiB email diff maximum. max-email-diff-size = 5242880 -- 2.31.1