From unknown Sat Jun 21 10:31:20 2025 X-Loop: help-debbugs@gnu.org Subject: bug#57778: [PATCH] * doc/ref/sxml.texi (7.21.4 Transforming SXML): adds a mention to the module to be imported for the procedures introduced in this section of the documentation. Resent-From: Fulbert Original-Sender: "Debbugs-submit" Resent-CC: bug-guile@gnu.org Resent-Date: Tue, 13 Sep 2022 17:23:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 57778 X-GNU-PR-Package: guile X-GNU-PR-Keywords: patch To: 57778@debbugs.gnu.org X-Debbugs-Original-To: bug-guile@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.166308973120488 (code B ref -1); Tue, 13 Sep 2022 17:23:02 +0000 Received: (at submit) by debbugs.gnu.org; 13 Sep 2022 17:22:11 +0000 Received: from localhost ([127.0.0.1]:52821 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oY9bv-0005KO-GX for submit@debbugs.gnu.org; Tue, 13 Sep 2022 13:22:11 -0400 Received: from lists.gnu.org ([209.51.188.17]:37170) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oY9bt-0005KB-K7 for submit@debbugs.gnu.org; Tue, 13 Sep 2022 13:22:11 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:56838) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oY9bt-0006Lf-Do for bug-guile@gnu.org; Tue, 13 Sep 2022 13:22:09 -0400 Received: from vimdzmsp-sfwd04.bluewin.ch ([195.186.227.132]:51263) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oY9bq-0006AJ-BD for bug-guile@gnu.org; Tue, 13 Sep 2022 13:22:08 -0400 Received: from bluewin.ch ([213.55.244.21]) by vimdzmsp-sfwd04.bluewin.ch Swisscom AG with ESMTPA id Y9bjoQzLJalglY9bkoJagU; Tue, 13 Sep 2022 19:22:02 +0200 X-Bluewin-Spam-Analysis: v=2.4 cv=J8zJUCrS c=1 sm=1 tr=0 ts=6320bc3a a=okETWHrkPlANAx00SlWV7w==:117 a=a587wBe53xGW89Lh:21 a=IkcTkHD0fZMA:10 a=E0ifbtn1iP3L-Y_F_NoA:9 a=QEXdDO2ut3YA:10 a=P74qiBS6ppNdwgCS_y4O:22 X-Bluewin-Spam-Score: 0.00 X-FXIT-IP: IPv4[213.55.244.21] Epoch[1663089722] X-Bluewin-AuthAs: fulbert@bluewin.ch Date: Tue, 13 Sep 2022 19:21:59 +0200 From: Fulbert Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline X-CMAE-Envelope: MS4xfL09UUIOSYEpmNZwVT7zKPr5uZNz1b8gMDhNVkNVQvy5x8qomK8E7LbnpvleF/mwrkvlShXVU+YEPIZo+7w29A0/BouL+YZAmAw1DBK4zof2c3rSuEwZ 6Z7Z3TQZJAo12D4jVSmP9N5onCSK2o51vc2HOnZEBooQIeM0OS/1A7vstbbEtOHpPoTZLCPzeIwVuA== Received-SPF: pass client-ip=195.186.227.132; envelope-from=fulbert@bluewin.ch; helo=vimdzmsp-sfwd04.bluewin.ch X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, 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.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 (--) Small change proposal in attached patch to give some direction on module to use for functions discussed in the (7.21.4 Transforming SXML) section of the documentation. --- doc/ref/sxml.texi | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/ref/sxml.texi b/doc/ref/sxml.texi index 7e3ca65e3..622e93291 100644 --- a/doc/ref/sxml.texi +++ b/doc/ref/sxml.texi @@ -475,14 +475,14 @@ where :: x [] -> @end smallexample -The pre-post-order function visits the nodes and nodelists -pre-post-order (depth-first). For each @code{} of the form -@code{(@var{name} ...)}, it looks up an association with the -given @var{name} among its @var{}. If failed, -@code{pre-post-order} tries to locate a @code{*default*} binding. It's -an error if the latter attempt fails as well. Having found a binding, -the @code{pre-post-order} function first checks to see if the binding is -of the form +The pre-post-order function, in (sxml transform) module, visits the +nodes and nodelists pre-post-order (depth-first). For each +@code{} of the form @code{(@var{name} ...)}, it looks up an +association with the given @var{name} among its @var{}. If +failed, @code{pre-post-order} tries to locate a @code{*default*} +binding. It's an error if the latter attempt fails as well. Having +found a binding, the @code{pre-post-order} function first checks to see +if the binding is of the form @smallexample ( *preorder* . ) -- 2.37.3 From unknown Sat Jun 21 10:31:20 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: Fulbert Subject: bug#57778: closed (Re: bug#57778: [PATCH] * doc/ref/sxml.texi (7.21.4 Transforming SXML): adds a mention to the module to be imported for the procedures introduced in this section of the documentation.) Message-ID: References: <87edvrfycb.fsf@gnu.org> X-Gnu-PR-Message: they-closed 57778 X-Gnu-PR-Package: guile X-Gnu-PR-Keywords: patch Reply-To: 57778@debbugs.gnu.org Date: Sat, 01 Oct 2022 13:50:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1664632202-22238-1" This is a multi-part message in MIME format... ------------=_1664632202-22238-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #57778: [PATCH] * doc/ref/sxml.texi (7.21.4 Transforming SXML): adds a ment= ion to the module to be imported for the procedures introduced in this se= ction of the documentation. 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 57778@debbugs.gnu.org. --=20 57778: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D57778 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1664632202-22238-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 57778-done) by debbugs.gnu.org; 1 Oct 2022 13:49:35 +0000 Received: from localhost ([127.0.0.1]:44018 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oecs2-0005ls-L7 for submit@debbugs.gnu.org; Sat, 01 Oct 2022 09:49:34 -0400 Received: from eggs.gnu.org ([209.51.188.92]:58452) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oecs1-0005lg-Eb for 57778-done@debbugs.gnu.org; Sat, 01 Oct 2022 09:49:33 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:48848) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oecrv-0000w1-0n; Sat, 01 Oct 2022 09:49:27 -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=W055B7YGqFlK0hHNesvADoHJ5xCQiWXB/IrlINATVVE=; b=dp+VLKMLhIXXgJ6II1Xy ZeVSzP4Qda6oydr4VqLQcN+TvHPpsCpD2GJZsYDDkORCHzlcj/FuFCvIi87YDcBKC/RoiYvfe+l+H 7YhpzPLt40wCfVtdkBQAK0WVUKLD1nNWLMukYcy4VLuTfJB8Sqb/C/24ERrcoobyttqUJExNcO5h+ d/ukwLviHKUdzpnItJSWiu7o1Boz4e8dxEf+a44eu5TMrnBKSmqO0Ar1rb906xO4EsBqbV+XVsyEi 7aGdxYfIxR0++dKdZGzdtnwJqMCGiOLDeua3TfVHuav6QyDsZr2y0nZe2bmE3nmOtVNYx4IqCxinW uTxIAEYaA1Lujg==; Received: from 91-160-117-201.subs.proxad.net ([91.160.117.201]:53544 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oecru-0007vs-IP; Sat, 01 Oct 2022 09:49:26 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Fulbert Subject: Re: bug#57778: [PATCH] * doc/ref/sxml.texi (7.21.4 Transforming SXML): adds a mention to the module to be imported for the procedures introduced in this section of the documentation. References: Date: Sat, 01 Oct 2022 15:49:24 +0200 In-Reply-To: (fulbert@bluewin.ch's message of "Tue, 13 Sep 2022 19:21:59 +0200") Message-ID: <87edvrfycb.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 57778-done Cc: 57778-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: -3.3 (---) Hi, Fulbert skribis: > Small change proposal in attached patch to give some direction on module > to use for functions discussed in the (7.21.4 Transforming SXML) section > of the documentation. A welcome improvement! > +The pre-post-order function, in (sxml transform) module, visits the ^ I added a missing =E2=80=9Cthe=E2=80=9D and wrap the procedure name and mod= ule name in @code. Applied, thanks! Ludo=E2=80=99. ------------=_1664632202-22238-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 13 Sep 2022 17:22:11 +0000 Received: from localhost ([127.0.0.1]:52821 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oY9bv-0005KO-GX for submit@debbugs.gnu.org; Tue, 13 Sep 2022 13:22:11 -0400 Received: from lists.gnu.org ([209.51.188.17]:37170) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oY9bt-0005KB-K7 for submit@debbugs.gnu.org; Tue, 13 Sep 2022 13:22:11 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:56838) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oY9bt-0006Lf-Do for bug-guile@gnu.org; Tue, 13 Sep 2022 13:22:09 -0400 Received: from vimdzmsp-sfwd04.bluewin.ch ([195.186.227.132]:51263) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oY9bq-0006AJ-BD for bug-guile@gnu.org; Tue, 13 Sep 2022 13:22:08 -0400 Received: from bluewin.ch ([213.55.244.21]) by vimdzmsp-sfwd04.bluewin.ch Swisscom AG with ESMTPA id Y9bjoQzLJalglY9bkoJagU; Tue, 13 Sep 2022 19:22:02 +0200 X-Bluewin-Spam-Analysis: v=2.4 cv=J8zJUCrS c=1 sm=1 tr=0 ts=6320bc3a a=okETWHrkPlANAx00SlWV7w==:117 a=a587wBe53xGW89Lh:21 a=IkcTkHD0fZMA:10 a=E0ifbtn1iP3L-Y_F_NoA:9 a=QEXdDO2ut3YA:10 a=P74qiBS6ppNdwgCS_y4O:22 X-Bluewin-Spam-Score: 0.00 X-FXIT-IP: IPv4[213.55.244.21] Epoch[1663089722] X-Bluewin-AuthAs: fulbert@bluewin.ch Date: Tue, 13 Sep 2022 19:21:59 +0200 From: Fulbert To: bug-guile@gnu.org Subject: [PATCH] * doc/ref/sxml.texi (7.21.4 Transforming SXML): adds a mention to the module to be imported for the procedures introduced in this section of the documentation. Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline X-CMAE-Envelope: MS4xfL09UUIOSYEpmNZwVT7zKPr5uZNz1b8gMDhNVkNVQvy5x8qomK8E7LbnpvleF/mwrkvlShXVU+YEPIZo+7w29A0/BouL+YZAmAw1DBK4zof2c3rSuEwZ 6Z7Z3TQZJAo12D4jVSmP9N5onCSK2o51vc2HOnZEBooQIeM0OS/1A7vstbbEtOHpPoTZLCPzeIwVuA== Received-SPF: pass client-ip=195.186.227.132; envelope-from=fulbert@bluewin.ch; helo=vimdzmsp-sfwd04.bluewin.ch X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, 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.3 (-) X-Debbugs-Envelope-To: submit 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 (--) Small change proposal in attached patch to give some direction on module to use for functions discussed in the (7.21.4 Transforming SXML) section of the documentation. --- doc/ref/sxml.texi | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/ref/sxml.texi b/doc/ref/sxml.texi index 7e3ca65e3..622e93291 100644 --- a/doc/ref/sxml.texi +++ b/doc/ref/sxml.texi @@ -475,14 +475,14 @@ where :: x [] -> @end smallexample -The pre-post-order function visits the nodes and nodelists -pre-post-order (depth-first). For each @code{} of the form -@code{(@var{name} ...)}, it looks up an association with the -given @var{name} among its @var{}. If failed, -@code{pre-post-order} tries to locate a @code{*default*} binding. It's -an error if the latter attempt fails as well. Having found a binding, -the @code{pre-post-order} function first checks to see if the binding is -of the form +The pre-post-order function, in (sxml transform) module, visits the +nodes and nodelists pre-post-order (depth-first). For each +@code{} of the form @code{(@var{name} ...)}, it looks up an +association with the given @var{name} among its @var{}. If +failed, @code{pre-post-order} tries to locate a @code{*default*} +binding. It's an error if the latter attempt fails as well. Having +found a binding, the @code{pre-post-order} function first checks to see +if the binding is of the form @smallexample ( *preorder* . ) -- 2.37.3 ------------=_1664632202-22238-1--