From debbugs-submit-bounces@debbugs.gnu.org Wed Sep 13 03:05:46 2023 Received: (at submit) by debbugs.gnu.org; 13 Sep 2023 07:05:46 +0000 Received: from localhost ([127.0.0.1]:60596 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qgJwX-0001GO-Nq for submit@debbugs.gnu.org; Wed, 13 Sep 2023 03:05:45 -0400 Received: from lists.gnu.org ([2001:470:142::17]:39868) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qgJwU-0001G9-P5 for submit@debbugs.gnu.org; Wed, 13 Sep 2023 03:05:44 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qgJwJ-0006AH-9k for bug-guix@gnu.org; Wed, 13 Sep 2023 03:05:31 -0400 Received: from layka.disroot.org ([178.21.23.139]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qgJwG-0005VV-MK for bug-guix@gnu.org; Wed, 13 Sep 2023 03:05:31 -0400 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 9D67C4027B for ; Wed, 13 Sep 2023 08:50:24 +0200 (CEST) X-Virus-Scanned: SPAM Filter at disroot.org Received: from layka.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id iUIP7f-h2XZf for ; Wed, 13 Sep 2023 08:50:23 +0200 (CEST) From: "(" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1694587823; bh=wUf0EQWJKp8GlQQXEyAyPE77uIo9bt8UjP9xb90MokY=; h=From:To:Subject:Date; b=TJ8ko9UFFPTBMxHRCmYTsVV2aCvJLmbKNP9d2za1HFnZjXE6Vt+RfdIFpyOfnVzAH vjDrL1nhhDcNAblm7mHDgU7vxRi3uBXbM3c97FnvQcVBlqGq83gGfH5HO//QVCd5K2 wgBvlmJXdB0zxslhwBsJgNjX+fiA2CStCtv4a/SIiJS5Ex1QFatyFVP/9vkr1biuCa 5hbu3kxu/No3FBjRn7rwr80SmkODYbdaavHtiqyiZBuc1kKaAyVRxMyUPFMsfnJTIj LYcjUaYiTA2Nkz2EMXU9eyvxJGgkjdzwPMJx0yh/c/uPQ9M9RUIDDgkGEof6BWYb4+ +ZEPJGyRAOh0Q== To: bug-guix Subject: in Geiser Date: Wed, 13 Sep 2023 07:45:25 +0100 Message-ID: <87o7i6y3br.fsf@disroot.org> MIME-Version: 1.0 Content-Type: text/plain Received-SPF: pass client-ip=178.21.23.139; envelope-from=paren@disroot.org; helo=layka.disroot.org X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.9 (/) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.1 (/) Hi, If I connect Geiser to a Guix REPL, like so: $ guix repl --listen=tcp:37146 & M-x geiser-connect RET RET and enter the following into it: ,use (guix packages) (package (name "test") (version "1.0.0") (source #f) (build-system #f) (home-page #f) (synopsis #f) (description #f) (license #f)) I get this error: While compiling expression: Syntax error: unknown file:#f:#f: encountered raw symbol in macro output in subform socket of (current-location-vector) When putting the same into a typical `guix repl` instance running in the foreground within a terminal, I get no error, just the object that I expected. This can be temporarily fixed by adding ``(location #f)'' to the end of the package record. Any ideas why this happens? I don't know the first thing about how Geiser works... -- (