From unknown Mon Aug 18 20:14:56 2025 X-Loop: help-debbugs@gnu.org Subject: bug#57808: [PATCH] string-fun: Fix typo Resent-From: jgart Original-Sender: "Debbugs-submit" Resent-CC: bug-guile@gnu.org Resent-Date: Wed, 14 Sep 2022 18:15:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 57808 X-GNU-PR-Package: guile X-GNU-PR-Keywords: patch To: 57808@debbugs.gnu.org Cc: jgart X-Debbugs-Original-To: bug-guile@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.166317928515121 (code B ref -1); Wed, 14 Sep 2022 18:15:02 +0000 Received: (at submit) by debbugs.gnu.org; 14 Sep 2022 18:14:45 +0000 Received: from localhost ([127.0.0.1]:56139 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oYWuL-0003vp-16 for submit@debbugs.gnu.org; Wed, 14 Sep 2022 14:14:45 -0400 Received: from lists.gnu.org ([209.51.188.17]:42894) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oYWuH-0003vf-K1 for submit@debbugs.gnu.org; Wed, 14 Sep 2022 14:14:43 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:42344) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oYWuH-00065S-FW for bug-guile@gnu.org; Wed, 14 Sep 2022 14:14:41 -0400 Received: from mx1.dismail.de ([78.46.223.134]:45613) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oYWuF-0001Xe-IX for bug-guile@gnu.org; Wed, 14 Sep 2022 14:14:41 -0400 Received: from mx1.dismail.de (localhost [127.0.0.1]) by mx1.dismail.de (OpenSMTPD) with ESMTP id 1b51bb85 for ; Wed, 14 Sep 2022 20:14:34 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=dismail.de; h=from:to:cc :subject:date:message-id:mime-version:content-transfer-encoding; s=20190914; bh=HJs6Fvi6rjoTdLPZ/5RC30DMS6ZIdS+4ZN9Uf5k1ctk=; b= rJ/dbsZW1coIU5vK5gDYrFDZLMx3fou9PIf/0qlauVdRgNIYSGJDQ5dJ1KNxgJ0W UzKLeQU30MzKPXwnb5PlWtlhbNHQjIhcqmEb3jo+exSJKYeY0b6npaBHyr6EMHOL P9fM+UzrPpd0NshtggX3CpLQMH7U7P5zX6l4pI+yDrB2H2xqcTLP9j0UI4CD5+ZC nqQk6gNNy2RoMVe3rxJXzFskwbOfxr3ah9fbh3eAztvYRgsicMvO/rYla9XaZf3b 7JInr4kTeZnOTnPnDqBMH3eWscPYsG4B6lae7qgqKyosW6WPe4Ki2sjHqYMkOk0F fkPnoXLsxjL9/pzPZ6V0Ag== Received: from smtp1.dismail.de ( [10.240.26.11]) by mx1.dismail.de (OpenSMTPD) with ESMTP id b27d0f8a for ; Wed, 14 Sep 2022 20:14:34 +0200 (CEST) Received: from smtp1.dismail.de (localhost [127.0.0.1]) by smtp1.dismail.de (OpenSMTPD) with ESMTP id 708dc32f for ; Wed, 14 Sep 2022 20:14:34 +0200 (CEST) Received: by dismail.de (OpenSMTPD) with ESMTPSA id 349abf27 (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Wed, 14 Sep 2022 20:14:28 +0200 (CEST) From: jgart Date: Wed, 14 Sep 2022 13:14:21 -0500 Message-Id: <20220914181421.28913-1-jgart@dismail.de> X-Mailer: git-send-email 2.37.3 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=78.46.223.134; envelope-from=jgart@dismail.de; helo=mx1.dismail.de X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) --- module/ice-9/string-fun.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/ice-9/string-fun.scm b/module/ice-9/string-fun.scm index 03e0238fa..592b49e20 100644 --- a/module/ice-9/string-fun.scm +++ b/module/ice-9/string-fun.scm @@ -30,7 +30,7 @@ ;;;; ;;; -;;; Various string funcitons, particularly those that take +;;; Various string functions, particularly those that take ;;; advantage of the "shared substring" capability. ;;; FIXME Document these functions in Miscellaneous String Operations:: ;;; in doc/ref/api-data.texi. -- 2.37.3 From unknown Mon Aug 18 20:14:56 2025 X-Loop: help-debbugs@gnu.org Subject: bug#57808: [PATCH] string-fun: Fix typo Resent-From: lloda Original-Sender: "Debbugs-submit" Resent-CC: bug-guile@gnu.org Resent-Date: Sat, 17 Sep 2022 11:46:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 57808 X-GNU-PR-Package: guile X-GNU-PR-Keywords: patch To: jgart@dismail.de, 57808@debbugs.gnu.org Cc: 57808-done@debbugs.gnu.org X-Debbugs-Original-To: jgart , "jgart via Bug reports for GUILE, GNU's Ubiquitous Extension Language" Received: via spool by submit@debbugs.gnu.org id=B.16634151341430 (code B ref -1); Sat, 17 Sep 2022 11:46:02 +0000 Received: (at submit) by debbugs.gnu.org; 17 Sep 2022 11:45:34 +0000 Received: from localhost ([127.0.0.1]:45280 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oZWGL-0000N0-S3 for submit@debbugs.gnu.org; Sat, 17 Sep 2022 07:45:34 -0400 Received: from lists.gnu.org ([209.51.188.17]:41238) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oZWGK-0000Mt-Lr for submit@debbugs.gnu.org; Sat, 17 Sep 2022 07:45:32 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:40890) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oZWGJ-00066V-H3 for bug-guile@gnu.org; Sat, 17 Sep 2022 07:45:31 -0400 Received: from mta-09-3.privateemail.com ([68.65.122.19]:12099) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oZWGF-0000xA-NV for bug-guile@gnu.org; Sat, 17 Sep 2022 07:45:29 -0400 Received: from mta-09.privateemail.com (localhost [127.0.0.1]) by mta-09.privateemail.com (Postfix) with ESMTP id D19DE18000A5; Sat, 17 Sep 2022 07:45:16 -0400 (EDT) Received: from [192.168.1.105] (unknown [51.154.167.214]) by mta-09.privateemail.com (Postfix) with ESMTPA id DDF5118000A1; Sat, 17 Sep 2022 07:45:13 -0400 (EDT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 13.4 \(3608.120.23.2.7\)) From: lloda In-Reply-To: <20220914181421.28913-1-jgart@dismail.de> Date: Sat, 17 Sep 2022 13:45:11 +0200 Content-Transfer-Encoding: 7bit Message-Id: References: <20220914181421.28913-1-jgart@dismail.de> X-Mailer: Apple Mail (2.3608.120.23.2.7) X-Virus-Scanned: ClamAV using ClamSMTP Received-SPF: pass client-ip=68.65.122.19; envelope-from=lloda@sarc.name; helo=MTA-09-3.privateemail.com X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) Applied in 9592516bfa23056542e9b05b00a4449d0809c6bc. Ty! From unknown Mon Aug 18 20:14:56 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: jgart Subject: bug#57808: closed (Re: bug#57808: [PATCH] string-fun: Fix typo) Message-ID: References: <20220914181421.28913-1-jgart@dismail.de> X-Gnu-PR-Message: they-closed 57808 X-Gnu-PR-Package: guile X-Gnu-PR-Keywords: patch Reply-To: 57808@debbugs.gnu.org Date: Sat, 17 Sep 2022 11:46:03 +0000 Content-Type: multipart/mixed; boundary="----------=_1663415163-1512-1" This is a multi-part message in MIME format... ------------=_1663415163-1512-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #57808: [PATCH] string-fun: Fix typo which was filed against the guile package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 57808@debbugs.gnu.org. --=20 57808: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D57808 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1663415163-1512-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 57808-done) by debbugs.gnu.org; 17 Sep 2022 11:45:25 +0000 Received: from localhost ([127.0.0.1]:45277 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oZWGD-0000MZ-FD for submit@debbugs.gnu.org; Sat, 17 Sep 2022 07:45:25 -0400 Received: from mta-09-3.privateemail.com ([68.65.122.19]:11428) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oZWGB-0000MI-Ir for 57808-done@debbugs.gnu.org; Sat, 17 Sep 2022 07:45:24 -0400 Received: from mta-09.privateemail.com (localhost [127.0.0.1]) by mta-09.privateemail.com (Postfix) with ESMTP id D19DE18000A5; Sat, 17 Sep 2022 07:45:16 -0400 (EDT) Received: from [192.168.1.105] (unknown [51.154.167.214]) by mta-09.privateemail.com (Postfix) with ESMTPA id DDF5118000A1; Sat, 17 Sep 2022 07:45:13 -0400 (EDT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 13.4 \(3608.120.23.2.7\)) Subject: Re: bug#57808: [PATCH] string-fun: Fix typo From: lloda In-Reply-To: <20220914181421.28913-1-jgart@dismail.de> Date: Sat, 17 Sep 2022 13:45:11 +0200 Content-Transfer-Encoding: 7bit Message-Id: References: <20220914181421.28913-1-jgart@dismail.de> To: jgart , "jgart via Bug reports for GUILE, GNU's Ubiquitous Extension Language" X-Mailer: Apple Mail (2.3608.120.23.2.7) X-Virus-Scanned: ClamAV using ClamSMTP X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 57808-done Cc: 57808-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Applied in 9592516bfa23056542e9b05b00a4449d0809c6bc. Ty! ------------=_1663415163-1512-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 14 Sep 2022 18:14:45 +0000 Received: from localhost ([127.0.0.1]:56139 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oYWuL-0003vp-16 for submit@debbugs.gnu.org; Wed, 14 Sep 2022 14:14:45 -0400 Received: from lists.gnu.org ([209.51.188.17]:42894) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oYWuH-0003vf-K1 for submit@debbugs.gnu.org; Wed, 14 Sep 2022 14:14:43 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:42344) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oYWuH-00065S-FW for bug-guile@gnu.org; Wed, 14 Sep 2022 14:14:41 -0400 Received: from mx1.dismail.de ([78.46.223.134]:45613) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oYWuF-0001Xe-IX for bug-guile@gnu.org; Wed, 14 Sep 2022 14:14:41 -0400 Received: from mx1.dismail.de (localhost [127.0.0.1]) by mx1.dismail.de (OpenSMTPD) with ESMTP id 1b51bb85 for ; Wed, 14 Sep 2022 20:14:34 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=dismail.de; h=from:to:cc :subject:date:message-id:mime-version:content-transfer-encoding; s=20190914; bh=HJs6Fvi6rjoTdLPZ/5RC30DMS6ZIdS+4ZN9Uf5k1ctk=; b= rJ/dbsZW1coIU5vK5gDYrFDZLMx3fou9PIf/0qlauVdRgNIYSGJDQ5dJ1KNxgJ0W UzKLeQU30MzKPXwnb5PlWtlhbNHQjIhcqmEb3jo+exSJKYeY0b6npaBHyr6EMHOL P9fM+UzrPpd0NshtggX3CpLQMH7U7P5zX6l4pI+yDrB2H2xqcTLP9j0UI4CD5+ZC nqQk6gNNy2RoMVe3rxJXzFskwbOfxr3ah9fbh3eAztvYRgsicMvO/rYla9XaZf3b 7JInr4kTeZnOTnPnDqBMH3eWscPYsG4B6lae7qgqKyosW6WPe4Ki2sjHqYMkOk0F fkPnoXLsxjL9/pzPZ6V0Ag== Received: from smtp1.dismail.de ( [10.240.26.11]) by mx1.dismail.de (OpenSMTPD) with ESMTP id b27d0f8a for ; Wed, 14 Sep 2022 20:14:34 +0200 (CEST) Received: from smtp1.dismail.de (localhost [127.0.0.1]) by smtp1.dismail.de (OpenSMTPD) with ESMTP id 708dc32f for ; Wed, 14 Sep 2022 20:14:34 +0200 (CEST) Received: by dismail.de (OpenSMTPD) with ESMTPSA id 349abf27 (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Wed, 14 Sep 2022 20:14:28 +0200 (CEST) From: jgart To: bug-guile@gnu.org Subject: [PATCH] string-fun: Fix typo Date: Wed, 14 Sep 2022 13:14:21 -0500 Message-Id: <20220914181421.28913-1-jgart@dismail.de> X-Mailer: git-send-email 2.37.3 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=78.46.223.134; envelope-from=jgart@dismail.de; helo=mx1.dismail.de X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: jgart X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) --- module/ice-9/string-fun.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/ice-9/string-fun.scm b/module/ice-9/string-fun.scm index 03e0238fa..592b49e20 100644 --- a/module/ice-9/string-fun.scm +++ b/module/ice-9/string-fun.scm @@ -30,7 +30,7 @@ ;;;; ;;; -;;; Various string funcitons, particularly those that take +;;; Various string functions, particularly those that take ;;; advantage of the "shared substring" capability. ;;; FIXME Document these functions in Miscellaneous String Operations:: ;;; in doc/ref/api-data.texi. -- 2.37.3 ------------=_1663415163-1512-1--