From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Neil Jerram Newsgroups: gmane.lisp.guile.user Subject: Re: Using . in module names Date: Fri, 3 Jun 2016 09:44:51 +0100 Message-ID: <57514383.3080501@ossau.homelinux.net> References: <3813b138-93f1-a451-82fc-58d57c977274@cbaines.net> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1464944438 16997 80.91.229.3 (3 Jun 2016 09:00:38 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 3 Jun 2016 09:00:38 +0000 (UTC) To: guile-user@gnu.org Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Fri Jun 03 11:00:25 2016 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1b8kxY-0003D5-0E for guile-user@m.gmane.org; Fri, 03 Jun 2016 11:00:04 +0200 Original-Received: from localhost ([::1]:53445 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b8kxX-0007wC-2c for guile-user@m.gmane.org; Fri, 03 Jun 2016 05:00:03 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:53470) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b8kj0-0003A0-Ik for guile-user@gnu.org; Fri, 03 Jun 2016 04:45:03 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b8kiu-0000Ms-G0 for guile-user@gnu.org; Fri, 03 Jun 2016 04:45:01 -0400 Original-Received: from smtp-out-3.talktalk.net ([62.24.135.67]:54219) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b8kiu-0000MY-AE for guile-user@gnu.org; Fri, 03 Jun 2016 04:44:56 -0400 Original-Received: from arudy.520b.com ([79.75.50.121]) by smtp.talktalk.net with SMTP id 8kirbmaU8XCEW8kirb3qid; Fri, 03 Jun 2016 09:44:54 +0100 X-Originating-IP: [79.75.50.121] X-Spam: 0 X-OAuthority: v=2.2 cv=cszZqBwi c=1 sm=1 tr=0 a=WR95f+J/FRqSCTFbe5Lpfw==:117 a=WR95f+J/FRqSCTFbe5Lpfw==:17 a=L9H7d07YOLsA:10 a=9cW_t1CCXrUA:10 a=s5jvgZ67dGcA:10 a=pD_ry4oyNxEA:10 a=rlShVRq-CSq1Mf9rBosA:9 Original-Received: from [10.0.2.15] (unknown [213.86.221.35]) by arudy.520b.com (Postfix) with ESMTPSA id D9FEA38009 for ; Fri, 3 Jun 2016 09:39:51 +0100 (BST) User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.8.0 In-Reply-To: <3813b138-93f1-a451-82fc-58d57c977274@cbaines.net> X-CMAE-Envelope: MS4wfOHmdLV82X6Czm39BvW7SBdM5fLqmNuOS9E/GvTKSg4sRsoFZGI4F9I2gngrZ25SM+lIrbDxuL7l/Flq4rJerWEGGknmG/gLLjkPDb6e8n+HxEGpv+n5 RHCIOUFKCj2FoqneSAv/VE2dfji5m3hAd93RMbe29ups8mnwmnc1DRxE X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 62.24.135.67 X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.21 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.org@gnu.org Original-Sender: "guile-user" Xref: news.gmane.org gmane.lisp.guile.user:12595 Archived-At: On 03/06/16 08:57, Christopher Baines wrote: > From reading the documentation, I would expect this to work, as . is > valid in symbols? But from trying this out, it does not seem to (the > module cannot be loaded). > > Does anyone have information about this? > I think you should provide the complete example of what isn't working. It's not clear to me if you mean (define-module (.) ...) or (define-module (.something) ...) or (define-module (something . else) ...) etc. Regards, Neil