From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by sourceware.org (Postfix) with ESMTPS id 4D5483858C74 for ; Thu, 2 Feb 2023 10:45:55 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 4D5483858C74 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=redhat.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1675334754; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=tAsl9jW8zEQPJX4j9AazUOi1x11yHagzp3bG1j7OTnk=; b=ecvRcMLq9hjv7THSOWjli6gAMcWqtWo0dKDssRaTBLFgFLnVtWq2mlYjv7/O1MjLemyRvD R/oTFKrynH0F6qmlIbaZeIHi3XBiXFk8pXGhdjhxBa39MfNNKJF8HK2v/N3ncx++Zwv73c uCk8sMrgHKGii/o20R6RwtaUT9eiNT0= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-472-sNymFgzbOMaty1HpVZbMYg-1; Thu, 02 Feb 2023 05:45:52 -0500 X-MC-Unique: sNymFgzbOMaty1HpVZbMYg-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.rdu2.redhat.com [10.11.54.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id D89543815EEC; Thu, 2 Feb 2023 10:45:51 +0000 (UTC) Received: from oldenburg.str.redhat.com (unknown [10.39.192.36]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 17B9C18EC4; Thu, 2 Feb 2023 10:45:50 +0000 (UTC) From: Florian Weimer To: Andreas Schwab via Libc-alpha Cc: Andreas Schwab , Carlos O'Donell Subject: Re: [PATCH] Account for grouping in printf width (bug 23432) References: <87pmb8ktdo.fsf@mid.deneb.enyo.de> <9531aa0c-bb05-ab2f-fd48-0751fb6f4393@redhat.com> Date: Thu, 02 Feb 2023 11:45:49 +0100 In-Reply-To: (Andreas Schwab via Libc-alpha's message of "Thu, 02 Feb 2023 10:51:52 +0100") Message-ID: <87tu04bb1e.fsf@oldenburg.str.redhat.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.5 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain X-Spam-Status: No, score=-10.9 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H2,SPF_HELO_NONE,SPF_NONE,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: * Andreas Schwab via Libc-alpha: > On Jan 22 2023, Carlos O'Donell via Libc-alpha wrote: > >> On 1/21/23 06:40, Florian Weimer wrote: >>> * Andreas Schwab via Libc-alpha: >>> >>>> diff --git a/stdio-common/Makefile b/stdio-common/Makefile >>>> index 6e9d104524..b46d932a20 100644 >>>> --- a/stdio-common/Makefile >>>> +++ b/stdio-common/Makefile >>>> @@ -195,6 +195,7 @@ tests := \ >>>> tst-gets \ >>>> tst-grouping \ >>>> tst-grouping2 \ >>>> + tst-grouping3 \ >>>> tst-long-dbl-fphex \ >>>> tst-memstream-string \ >>>> tst-obprintf \ >>> >>> Missing $(gen-locales) dependency. The change itself seems okay, it >>> seems to align with POSIX. Not sure if this is still possibly to >>> apply during the freeze. >> >> I'd like to avoid a partial fix like this just before we release 2.27. > > This is now bug 30068. I thought this was a fix for bug 23432, i.e. not a regression in 2.37? Thanks, Florian