From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Noah Lavine Newsgroups: gmane.lisp.guile.devel Subject: Loading R6RS Libraries Date: Mon, 15 Nov 2010 01:18:55 -0500 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: dough.gmane.org 1289801957 14156 80.91.229.12 (15 Nov 2010 06:19:17 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 15 Nov 2010 06:19:17 +0000 (UTC) To: guile-devel@gnu.org Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Mon Nov 15 07:19:08 2010 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1PHsPE-00061l-5W for guile-devel@m.gmane.org; Mon, 15 Nov 2010 07:19:08 +0100 Original-Received: from localhost ([127.0.0.1]:60878 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PHsPD-0006a0-Fo for guile-devel@m.gmane.org; Mon, 15 Nov 2010 01:19:07 -0500 Original-Received: from [140.186.70.92] (port=60284 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PHsP3-0006Zu-ST for guile-devel@gnu.org; Mon, 15 Nov 2010 01:18:58 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PHsP2-0007TT-W6 for guile-devel@gnu.org; Mon, 15 Nov 2010 01:18:57 -0500 Original-Received: from mail-ww0-f49.google.com ([74.125.82.49]:53552) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PHsP2-0007TN-Oh for guile-devel@gnu.org; Mon, 15 Nov 2010 01:18:56 -0500 Original-Received: by wwi17 with SMTP id 17so4264247wwi.30 for ; Sun, 14 Nov 2010 22:18:56 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:sender:received:date :x-google-sender-auth:message-id:subject:from:to:content-type; bh=TZ+7Pa+kszK0QjBGIkqiar5PldoKZMucdHT0Z1y8eo8=; b=xHm7PjCTdVZwDBkKqn5EHLMSsilPA3l2kCoTNiRZWpaSOv78qeUB5SgaNgYMarIfhD s1c1bzwRJBG3BP7owgpqsolaBgcSNG1RQY3owpqBkaF3qBo1mS4nNukFSU+aEZuMhYpZ TzoF97jIjYc/NKTUG0I3Iv6ACCImn0h+gdiQs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:date:x-google-sender-auth:message-id:subject :from:to:content-type; b=eksKi+lECzopeu7ptcrTVfyl7ivvO27aI+I4lSxIr4EjGAsENw4iVknxm4BODjvQXX DZG3l+ecdve48G1szYjvKOpL5HZVY7gzc21S4uElc8OcW7HONDCoORz7024acspTHxJl fPeFvIi5aTtLtsWrgfio2nyQRezsafizBb8r0= Original-Received: by 10.216.87.20 with SMTP id x20mr6333273wee.52.1289801935225; Sun, 14 Nov 2010 22:18:55 -0800 (PST) Original-Received: by 10.216.237.34 with HTTP; Sun, 14 Nov 2010 22:18:55 -0800 (PST) X-Google-Sender-Auth: 1x7e53X3B5vxpUWhyPR1kzOb7Bk X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:11134 Archived-At: Hello all, I encountered some behavior I didn't expect, and I'm not sure if it's intended or not. The following code works fine: (use-modules (rnrs base)) However, the next two lines both give errors: (use-modules (rnrs base (6))) (use-modules (rnrs base 6)) I didn't expect this because the manual refers to an '(rnrs base (6))' library. Is this what's supposed to be happening? Thanks, Noah