From mboxrd@z Thu Jan 1 00:00:00 1970 From: Maxim Cournoyer Subject: bug#28624: [PATCH] Add missing closing brace to tklib Date: Wed, 27 Sep 2017 14:50:40 -0400 Message-ID: <87shf82cxr.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57226) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dxHQI-00070H-87 for bug-guix@gnu.org; Wed, 27 Sep 2017 14:51:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dxHQE-0003Ix-BL for bug-guix@gnu.org; Wed, 27 Sep 2017 14:51:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:54890) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dxHQE-0003Iq-73 for bug-guix@gnu.org; Wed, 27 Sep 2017 14:51:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dxHQE-0007Sx-01 for bug-guix@gnu.org; Wed, 27 Sep 2017 14:51:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57112) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dxHQ1-0006tI-3S for bug-guix@gnu.org; Wed, 27 Sep 2017 14:50:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dxHPx-00035z-8w for bug-guix@gnu.org; Wed, 27 Sep 2017 14:50:49 -0400 Received: from mail-it0-x232.google.com ([2607:f8b0:4001:c0b::232]:56356) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dxHPx-00033K-31 for bug-guix@gnu.org; Wed, 27 Sep 2017 14:50:45 -0400 Received: by mail-it0-x232.google.com with SMTP id g18so7731887itg.5 for ; Wed, 27 Sep 2017 11:50:43 -0700 (PDT) Received: from apteryx (104-222-112-128.cpe.teksavvy.com. [104.222.112.128]) by smtp.gmail.com with ESMTPSA id d184sm2628936itd.18.2017.09.27.11.50.41 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Wed, 27 Sep 2017 11:50:42 -0700 (PDT) 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: 28624@debbugs.gnu.org --=-=-= Content-Type: text/plain This patch fixes a missing closing brace in the description of tklib, as reported by jlicht in #guix. It caused the "guix package --search" feature to break on master. Maxim --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-tklib-Add-missing-closing-brace.patch >From 98b167b3f00c5416365062fac000ab1b9deb9d10 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Wed, 27 Sep 2017 14:38:22 -0400 Subject: [PATCH] gnu: tklib: Add missing closing brace. * gnu/packages/tcl.scm (tklib): Add closing brace. Thanks to jlicht for reporting it in #guix. --- gnu/packages/tcl.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/tcl.scm b/gnu/packages/tcl.scm index 49cee3e05..34c84c1bf 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} -- 2.14.1 --=-=-=--