From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: =?utf-8?Q?Ludovic_Court=C3=A8s?= Newsgroups: gmane.lisp.guile.devel Subject: Re: bug#58109: simple-format vs (ice-9 format) bug in 3.0.7? Date: Sat, 01 Oct 2022 15:40:18 +0200 Message-ID: <87ill3fyrh.fsf@gnu.org> References: <00542b80-4511-f902-1f8d-a8c5d1645bc3@abou-samra.fr> <6396d555-17fe-dc16-970b-f1075e61131a@abou-samra.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="4445"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.1 (gnu/linux) Cc: christopher.lck@gmail.com, 58109@debbugs.gnu.org, guile-devel@gnu.org To: Jean Abou Samra Original-X-From: guile-devel-bounces+guile-devel=m.gmane-mx.org@gnu.org Sat Oct 01 15:40:41 2022 Return-path: Envelope-to: guile-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1oecjR-00010U-FU for guile-devel@m.gmane-mx.org; Sat, 01 Oct 2022 15:40:41 +0200 Original-Received: from localhost ([::1]:41802 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1oecjQ-0006tQ-7u for guile-devel@m.gmane-mx.org; Sat, 01 Oct 2022 09:40:40 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:56950) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oecj7-0006tB-AC for guile-devel@gnu.org; Sat, 01 Oct 2022 09:40:25 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]:52792) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oecj6-00083k-TA; Sat, 01 Oct 2022 09:40:20 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=fwpIuFiyyHG/kfPTkcHkSK2aQp0m18pngkht7zRftwM=; b=qz5mS+loA703YcYQXedd xEnBM7IOd7tTZ6tOpXawhEKcbHoMlUpUxLKpZauk06UmCfu67L9kRibwXb5bHjqZ6gDXjvudOGNX0 x1oxSTcjdZDEkunTPBYVF6DA9viD4cttMuqzgFik0ctvRV0yuHt4ssMIAwqTXVufkSzNlx9f3V8Mt IxXwc6Km5rGPe+S5csyBhhSrvLaVeUrfJCVxfAJmn84CAj747EiMcvcjegdRbdHvWDpOVj0G6QbFf 6EhtBIJx94f0BQuwyFO6ekikUSt2CSj8kPpLovsBzDlziboH6O9O2gLK3eTa8lhNOryBLXYL5GUs7 D0mcrliP25MHJA==; Original-Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=41120 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oecj6-00074Y-G8; Sat, 01 Oct 2022 09:40:20 -0400 In-Reply-To: <6396d555-17fe-dc16-970b-f1075e61131a@abou-samra.fr> (Jean Abou Samra's message of "Tue, 27 Sep 2022 12:38:29 +0200") X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane-mx.org@gnu.org Original-Sender: "guile-devel" Xref: news.gmane.io gmane.lisp.guile.devel:21377 Archived-At: Hi, Jean Abou Samra skribis: > Uh, at the end of module/ice-9/format.scm, there is > > ;; Thanks to Shuji Narazaki > (module-set! the-root-module 'format format) > > which dates back to > > commit 14469b7c69feb0f2c5b8a093f19fe2a548b31c5b > Author: Greg J. Badros > Date:=C2=A0=C2=A0 Thu Jan 20 20:58:30 2000 +0000 [...] > This probably predates #:replace and could be removed now, right? Yes, it could be removed, but probably not before the 4.0 series. The =E2=80=98-Wformat=E2=80=99 warning introduced sometime in the 2.0 or 2.= 2 series prepared for that removal by warning about simple-format/format mismatches, but there=E2=80=99s probably still code out there that assumes =E2=80=98format=E2=80=99 is the full-blown =E2=80=98format=E2=80=99, even w= hen (ice-9 format) is not explicitly imported. Thanks, Ludo=E2=80=99.