From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: 01/01: download: Handle HTTP redirects to relative URI references. Date: Mon, 23 Feb 2015 21:22:14 +0100 Message-ID: <87h9uc4bux.fsf@gnu.org> References: <20150219083234.7923.57098@vcs.savannah.gnu.org> 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]:40420) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YPzWJ-0007bA-OR for guix-devel@gnu.org; Mon, 23 Feb 2015 15:22:28 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YPzWF-0004uG-ON for guix-devel@gnu.org; Mon, 23 Feb 2015 15:22:23 -0500 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:49164) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YPzWF-0004uC-LQ for guix-devel@gnu.org; Mon, 23 Feb 2015 15:22:19 -0500 In-Reply-To: (Mark H. Weaver's message of "Thu, 19 Feb 2015 08:32:35 +0000") 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: Mark H Weaver Cc: guix-devel@gnu.org "Mark H. Weaver" skribis: > +;; XXX: Work around , present in Guile > +;; up to 2.0.11. > +(unless (or (> (string->number (major-version)) 2) > + (> (string->number (minor-version)) 0) > + (> (string->number (micro-version)) 11)) Just a minor nit: could you change that to use =E2=80=98guile-version>?=E2= =80=99 instead? It is more concise and easier to search for. Thanks for the fix! Ludo=E2=80=99.