From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: Trying to fix an error in the pypi-importer Date: Sun, 03 Jan 2016 15:09:28 +0100 Message-ID: <87poxivjon.fsf@gnu.org> References: <568453F6.1050605@gmail.com> <2c5756c8877a36699f8dbb07731ab3c1@riseup.net> <257e9ac376ee2c97785c0e63715ed38c@riseup.net> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35033) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aFjLi-0006KW-7E for guix-devel@gnu.org; Sun, 03 Jan 2016 09:09:35 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aFjLf-0002z0-1t for guix-devel@gnu.org; Sun, 03 Jan 2016 09:09:34 -0500 In-Reply-To: <257e9ac376ee2c97785c0e63715ed38c@riseup.net> (swedebugia@riseup.net's message of "Sat, 02 Jan 2016 18:10:25 +0100") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: swedebugia@riseup.net Cc: guix-devel swedebugia@riseup.net skribis: > During compilation after applying my patch above I get this error. > > GUILEC guix/build-system/python.go > ice-9/boot-9.scm:106:20: In procedure # ice-9/boot-9.scm:97:6 (thrown-k . args)>: > ice-9/boot-9.scm:106:20: In procedure scm_i_lreadparen: > guix/build-system/python.scm:216:1: end of file This (admittedly suboptimal) error suggests that Guile was looking for a closing parenthesis that never came. Presumably the patch adds an opening parenthesis but forgets to close it. Editors such as Emacs and Vim have support to highlight parentheses or even enter them automatically; I suggest using that to simplify work with Scheme code. For Emacs, see . Thanks, Ludo=E2=80=99.