From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED.blaine.gmane.org!not-for-mail From: Andy Wingo Newsgroups: gmane.lisp.guile.devel Subject: Re: [PATCH] Add string-replace-substring to (ice-9 string-fun) Date: Sun, 05 Jan 2020 12:34:02 +0100 Message-ID: <87imlqyw5x.fsf@pobox.com> References: <27656CBA-297B-4EE3-93D6-FD56BFBDDC44@sarc.name> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: blaine.gmane.org; posting-host="blaine.gmane.org:195.159.176.226"; logging-data="158627"; mail-complaints-to="usenet@blaine.gmane.org" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) Cc: guile-devel To: lloda Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Sun Jan 05 12:34:21 2020 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([209.51.188.17]) by blaine.gmane.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1io4An-000f6T-1X for guile-devel@m.gmane.org; Sun, 05 Jan 2020 12:34:21 +0100 Original-Received: from localhost ([::1]:41290 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1io4Al-0008J1-5c for guile-devel@m.gmane.org; Sun, 05 Jan 2020 06:34:19 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:50164) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1io4Ah-0008Iv-1b for guile-devel@gnu.org; Sun, 05 Jan 2020 06:34:15 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1io4Ag-0002e1-3f for guile-devel@gnu.org; Sun, 05 Jan 2020 06:34:14 -0500 Original-Received: from fanzine.igalia.com ([178.60.130.6]:34549) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1io4Af-0002dT-RR for guile-devel@gnu.org; Sun, 05 Jan 2020 06:34:14 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=igalia.com; s=20170329; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date:References:Subject:Cc:To:From; bh=DlE8/dVOTNUMbEKqUBAseY6mAGNe1DFyKUwgeG/82IY=; b=Od+1Q/dPtAtNovVV9jpZUicaVCNCie4+9QMLpviqllllQh9vtz1ChIjzx0Olg8G2eLKh05+s4nPfuqgqSAjj8yAolyp9KfAcfsQYkcTw21wbby0kVVXyfoBaYHCfEiBpyyrbS14yRygJj1vBDbdcX1+PWIni/j3sA/nuokjipU45nAR5Ke+8qgGhF0ZdIPU8RWKNUEfLJO98e+xtwaTVZe4wSehdA0ufuopXgjDfIVqEVLPPskHhWHdPCKz/pGVQFPMAKC2J2kTfqWWU+dzRSHBJP4KXvQzxoosYOFqbjOduLM4T4YVIl/njVkplKzUqBOz8BdbjYGNX5sxrD4EzSw==; Original-Received: from [88.123.12.110] (helo=sparrow) by fanzine.igalia.com with esmtpsa (Cipher TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim) id 1io4Ae-0004rA-0P; Sun, 05 Jan 2020 12:34:12 +0100 In-Reply-To: <27656CBA-297B-4EE3-93D6-FD56BFBDDC44@sarc.name> (lloda@sarc.name's message of "Fri, 20 Dec 2019 18:32:22 +0100") X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x (no timestamps) [generic] [fuzzy] X-Received-From: 178.60.130.6 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.23 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.org@gnu.org Original-Sender: "guile-devel" Xref: news.gmane.org gmane.lisp.guile.devel:20219 Archived-At: On Fri 20 Dec 2019 18:32, lloda writes: > This patch adds string-replace-substring that wingo posted to the > mailing list to (ice-9 strings). This is a commonly used function and a > good implementation isn't trivial, so I think it deserves inclusion. I didn't know that this module existed :) Sure, why not. Please fix the commit message when you push. Andy