From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Robby Zambito Newsgroups: gmane.lisp.guile.user Subject: Unable to import (ice-9 psyntax) Date: Tue, 14 Feb 2023 21:14:12 -0500 Message-ID: <87edqrk6st.fsf@robbyzambito.me> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="13278"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: mu4e 1.8.13; emacs 28.2 To: guile-user@gnu.org Original-X-From: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Wed Feb 15 03:21:53 2023 Return-path: Envelope-to: guile-user@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pS7Qf-0003Be-1F for guile-user@m.gmane-mx.org; Wed, 15 Feb 2023 03:21:53 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1pS7Q6-0006vv-LE; Tue, 14 Feb 2023 21:21:18 -0500 Original-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 1pS7Q5-0006vU-A3 for guile-user@gnu.org; Tue, 14 Feb 2023 21:21:17 -0500 Original-Received: from relay11.mail.gandi.net ([2001:4b98:dc4:8::231]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pS7Q3-0000D2-Pm for guile-user@gnu.org; Tue, 14 Feb 2023 21:21:17 -0500 Original-Received: (Authenticated sender: contact@robbyzambito.me) by mail.gandi.net (Postfix) with ESMTPSA id DEDAC100002 for ; Wed, 15 Feb 2023 02:21:08 +0000 (UTC) Received-SPF: pass client-ip=2001:4b98:dc4:8::231; envelope-from=contact@robbyzambito.me; helo=relay11.mail.gandi.net X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Original-Sender: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.lisp.guile.user:18910 Archived-At: Hello, For some reason I am having trouble importing the (ice-9 psyntax) module. Whenever I try to import it, I get the following error: scheme@(guile-user)> (import (ice-9 psyntax)) While compiling expression: No variable named syntax? in # I have Guile 3.0.9 installed from Guix, running on x86_64. I've tried using a Guix pure container, importing it transitively through R7RS libraries rather than directly in the REPL. All yield the same error. Any ideas would be appreciated :) Robby