From unknown Sun Sep 07 01:26:08 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#41355 <41355@debbugs.gnu.org> To: bug#41355 <41355@debbugs.gnu.org> Subject: Status: [PATCH] Fix typos in the manual Reply-To: bug#41355 <41355@debbugs.gnu.org> Date: Sun, 07 Sep 2025 08:26:08 +0000 retitle 41355 [PATCH] Fix typos in the manual reassign 41355 guile submitter 41355 jsynacek@redhat.com severity 41355 normal tag 41355 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Sun May 17 07:13:07 2020 Received: (at submit) by debbugs.gnu.org; 17 May 2020 11:13:07 +0000 Received: from localhost ([127.0.0.1]:42419 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jaHEB-0002BG-C5 for submit@debbugs.gnu.org; Sun, 17 May 2020 07:13:07 -0400 Received: from lists.gnu.org ([209.51.188.17]:43772) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jaHE6-0002B3-TV for submit@debbugs.gnu.org; Sun, 17 May 2020 07:13:03 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:46112) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jaHE6-00016C-Oi for bug-guile@gnu.org; Sun, 17 May 2020 07:13:02 -0400 Received: from ip-185-149-130-112.kmenet.cz ([185.149.130.112]:56997 helo=jsynacek-ntb.brq.redhat.com) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jaHE5-0002C1-QF for bug-guile@gnu.org; Sun, 17 May 2020 07:13:02 -0400 Received: by jsynacek-ntb.brq.redhat.com (Postfix, from userid 17912) id 41657404112A; Sun, 17 May 2020 13:03:46 +0200 (CEST) From: jsynacek@redhat.com To: bug-guile@gnu.org Subject: [PATCH] Fix typos in the manual Date: Sun, 17 May 2020 13:03:44 +0200 Message-Id: <20200517110344.53777-1-jsynacek@redhat.com> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: none client-ip=185.149.130.112; envelope-from=jsynacek@jsynacek-ntb.brq.redhat.com; helo=jsynacek-ntb.brq.redhat.com X-detected-operating-system: by eggs.gnu.org: First seen = 2020/05/17 07:03:46 X-ACL-Warn: Detected OS = Linux 2.2.x-3.x [generic] X-Spam_score_int: -4 X-Spam_score: -0.5 X-Spam_bar: / X-Spam_report: (-0.5 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_XBL=0.375, RDNS_DYNAMIC=0.982 autolearn=_AUTOLEARN X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit Cc: Jan Synacek 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 (---) From: Jan Synacek * doc/ref/api-control.texi: * doc/ref/r6rs.texi: * doc/ref/sxml.texi: Fix typos. --- doc/ref/api-control.texi | 4 ++-- doc/ref/r6rs.texi | 2 +- doc/ref/sxml.texi | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/ref/api-control.texi b/doc/ref/api-control.texi index b62c0d6fe..5df5344c5 100644 --- a/doc/ref/api-control.texi +++ b/doc/ref/api-control.texi @@ -678,8 +678,8 @@ Evaluate @var{expr} in a prompt, optionally specifying a tag and a handler. If no tag is given, the default prompt tag is used. If no handler is given, a default handler is installed. The default -handler accepts a procedure of one argument, which will called on the -captured continuation, within a prompt. +handler accepts a procedure of one argument, which will be called on +the captured continuation, within a prompt. Sometimes it's easier just to show code, as in this case: diff --git a/doc/ref/r6rs.texi b/doc/ref/r6rs.texi index c47eef7d1..e430708d0 100644 --- a/doc/ref/r6rs.texi +++ b/doc/ref/r6rs.texi @@ -1173,7 +1173,7 @@ evaluates to @code{baz}. @deffn {Scheme Procedure} raise obj Equivalent to core Guile @code{(raise-exception @var{obj})}. -@xref{Raising and Handling Exceptions}. p(Unfortunately, @code{raise} +@xref{Raising and Handling Exceptions}. (Unfortunately, @code{raise} is already bound to a different function in core Guile. @xref{Signals}.) @end deffn diff --git a/doc/ref/sxml.texi b/doc/ref/sxml.texi index 19125091c..5f827916e 100644 --- a/doc/ref/sxml.texi +++ b/doc/ref/sxml.texi @@ -230,7 +230,7 @@ SAX parsers were created to give the programmer more control on the parsing process. A programmer gives the SAX parser a number of ``callbacks'': functions that will be called on various features of the XML stream as they are encountered. SAX parsers are more efficient, but -much harder to user, as users typically have to manually maintain a +much harder to use, as users typically have to manually maintain a stack of open elements. Kiselyov realized that the SAX programming model could be made much -- 2.26.2 From debbugs-submit-bounces@debbugs.gnu.org Wed May 27 16:40:58 2020 Received: (at 41355-done) by debbugs.gnu.org; 27 May 2020 20:40:58 +0000 Received: from localhost ([127.0.0.1]:50069 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1je2rC-0002aT-4y for submit@debbugs.gnu.org; Wed, 27 May 2020 16:40:58 -0400 Received: from eggs.gnu.org ([209.51.188.92]:56370) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1je2rA-0002aG-9p for 41355-done@debbugs.gnu.org; Wed, 27 May 2020 16:40:56 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:44853) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1je2r5-0001E5-0d; Wed, 27 May 2020 16:40:51 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=37092 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1je2r4-0001rY-2X; Wed, 27 May 2020 16:40:50 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: jsynacek@redhat.com Subject: Re: bug#41355: [PATCH] Fix typos in the manual References: <20200517110344.53777-1-jsynacek@redhat.com> Date: Wed, 27 May 2020 22:40:47 +0200 In-Reply-To: <20200517110344.53777-1-jsynacek@redhat.com> (jsynacek@redhat.com's message of "Sun, 17 May 2020 13:03:44 +0200") Message-ID: <871rn5jels.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (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: 41355-done Cc: 41355-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, jsynacek@redhat.com skribis: > From: Jan Synacek > > * doc/ref/api-control.texi: > * doc/ref/r6rs.texi: > * doc/ref/sxml.texi: Fix typos. Applied, thanks! Ludo=E2=80=99. From unknown Sun Sep 07 01:26:08 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 25 Jun 2020 11:24:07 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator