From mboxrd@z Thu Jan 1 00:00:00 1970 From: Robert Vollmert Subject: bug#36547: expect an earlier/clearer error when trying to splice(?) a function into a gexp Date: Mon, 8 Jul 2019 14:33:36 +0200 Message-ID: Mime-Version: 1.0 (Mac OS X Mail 12.4 \(3445.104.11\)) Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:36828) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hkSqL-0002at-3R for bug-guix@gnu.org; Mon, 08 Jul 2019 08:34:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hkSqJ-0006r6-4P for bug-guix@gnu.org; Mon, 08 Jul 2019 08:34:05 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:49191) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hkSqI-0006qE-GJ for bug-guix@gnu.org; Mon, 08 Jul 2019 08:34:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hkSqI-0004cm-55 for bug-guix@gnu.org; Mon, 08 Jul 2019 08:34:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:36721) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hkSq7-0002VB-H9 for bug-guix@gnu.org; Mon, 08 Jul 2019 08:33:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hkSpz-0006i2-3c for bug-guix@gnu.org; Mon, 08 Jul 2019 08:33:45 -0400 Received: from mx1.mailbox.org ([2001:67c:2050:104:0:1:25:1]:59476) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hkSpy-0006gN-28 for bug-guix@gnu.org; Mon, 08 Jul 2019 08:33:43 -0400 Received: from smtp2.mailbox.org (smtp2.mailbox.org [80.241.60.241]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by mx1.mailbox.org (Postfix) with ESMTPS id C0D4050356 for ; Mon, 8 Jul 2019 14:33:38 +0200 (CEST) Received: from smtp2.mailbox.org ([80.241.60.241]) by spamfilter05.heinlein-hosting.de (spamfilter05.heinlein-hosting.de [80.241.56.123]) (amavisd-new, port 10030) with ESMTP id o-S9_CF9EBdC for ; Mon, 8 Jul 2019 14:33:37 +0200 (CEST) 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: 36547@debbugs.gnu.org I tried to use a function in a gexp along the lines of (define* (f x) =E2=80=A6) #~(begin (#$f x) =E2=80=A6) This resulted in the following error: ERROR: In procedure primitive-load: In procedure scm_lreadr: = /gnu/store/wcw0fii855axkiqfz05283rwl7nlrb3i-puzzledb-blogs-job-builder:1:2= 54: Unknown # object: #\< where the referenced builder file contains =E2=80=A6 (let ((backend (# = "tools.token"))) =E2=80=A6 It seems to me that whatever code writes the builder file should already = complain at the point where it substitutes # =E2=80=94 is that = possible?