From mboxrd@z Thu Jan 1 00:00:00 1970 From: Maxim Cournoyer Subject: bug#28624: [PATCHv2] Add missing closing brace to tklib Date: Wed, 27 Sep 2017 15:30:08 -0400 Message-ID: <87o9pw2b3z.fsf_-_@gmail.com> References: <87shf82cxr.fsf@gmail.com> <20170927205839.6234925f@scratchpost.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39697) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dxI37-0008NM-Hb for bug-guix@gnu.org; Wed, 27 Sep 2017 15:31:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dxI2x-0006L7-3g for bug-guix@gnu.org; Wed, 27 Sep 2017 15:31:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:54951) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dxI2w-0006L3-Ud for bug-guix@gnu.org; Wed, 27 Sep 2017 15:31:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dxI2w-00008r-O9 for bug-guix@gnu.org; Wed, 27 Sep 2017 15:31:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <20170927205839.6234925f@scratchpost.org> (Danny Milosavljevic's message of "Wed, 27 Sep 2017 20:58:39 +0200") List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: Danny Milosavljevic Cc: 28624-done@debbugs.gnu.org --=-=-= Content-Type: text/plain Danny Milosavljevic writes: > I pushed is patch to master as 958be7a4232c934c6480548efb86a00303e0eb71. Sorry, I sent the patch too soon, there was another problem, where # was used in place of @ in the same description :/. --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-tklib-Fix-texinfo-description.patch >From 61091a95f7e90aa351d473037a984533b315f585 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Wed, 27 Sep 2017 14:38:22 -0400 Subject: [PATCH] gnu: tklib: Fix texinfo description. * gnu/packages/tcl.scm (tklib): Fix texinfo description. Thanks to jlicht for reporting it in #guix. --- gnu/packages/tcl.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/tcl.scm b/gnu/packages/tcl.scm index 49cee3e05..5d9eba75f 100644 --- a/gnu/packages/tcl.scm +++ b/gnu/packages/tcl.scm @@ -276,7 +276,7 @@ modules for Tk, all written in high-level Tcl. Examples of provided widgets: @enumerate @item @code{chatwidget} @item @code{datefield} -@item @code{tooltip +@item @code{tooltip} @item @code{cursor} @item @code{ipentry} @item @code{tablelist} @@ -289,7 +289,7 @@ modules for Tk, all written in high-level Tcl. Examples of provided widgets: @item @code{ctext} @item @code{autosscroll} @item @code{canvas} -#end enumerate") +@end enumerate") (license (package-license tcl)))) (define-public tclxml -- 2.14.1 --=-=-=--