From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:58334) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jK0kJ-0008EI-2w for guix-patches@gnu.org; Thu, 02 Apr 2020 10:23:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jK0kI-0000Bp-9F for guix-patches@gnu.org; Thu, 02 Apr 2020 10:23:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:57021) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jK0kI-0000BW-3s for guix-patches@gnu.org; Thu, 02 Apr 2020 10:23:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jK0kH-0007KK-Vh for guix-patches@gnu.org; Thu, 02 Apr 2020 10:23:01 -0400 Subject: [bug#40274] [PATCH v5] gnu: Add kernel-module-loader-service. Resent-Message-ID: From: Mathieu Othacehe References: <20200328135908.2540-1-brice@waegenei.re> <20200402123712.338-1-brice@waegenei.re> Date: Thu, 02 Apr 2020 16:22:19 +0200 In-Reply-To: <20200402123712.338-1-brice@waegenei.re> (Brice Waegeneire's message of "Thu, 2 Apr 2020 14:37:12 +0200") Message-ID: <87sghm0xyc.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Brice Waegeneire Cc: 40274@debbugs.gnu.org Hello Brice, Thanks for this new version. > + (guard (c ((message-condition? c) > + (display (condition-message c)) Maybe `(format (current-error-port) "~a~%" (condition-message c))' instead of display. Thanks, Mathieu