From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: ludo@gnu.org (Ludovic =?iso-8859-1?Q?Court=E8s?=) Newsgroups: gmane.lisp.guile.devel Subject: Re: [PATCH] Compile in a fresh module by default Date: Thu, 15 Oct 2009 13:51:04 +0200 Message-ID: <87y6nc5107.fsf@gnu.org> References: <87ws52i36r.fsf@gnu.org> <87ljk9i6d7.fsf@gnu.org> <2bc5f8210910131926w57224fb6t6231555585f59f51@mail.gmail.com> <87k4yy75tm.fsf@gnu.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1255607489 30836 80.91.229.12 (15 Oct 2009 11:51:29 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 15 Oct 2009 11:51:29 +0000 (UTC) Cc: guile-devel@gnu.org To: Andy Wingo Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Thu Oct 15 13:51:20 2009 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.50) id 1MyOrY-0005qk-Iu for guile-devel@m.gmane.org; Thu, 15 Oct 2009 13:51:20 +0200 Original-Received: from localhost ([127.0.0.1]:55490 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MyOrY-0001Gn-45 for guile-devel@m.gmane.org; Thu, 15 Oct 2009 07:51:20 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MyOrQ-0001Ek-FK for guile-devel@gnu.org; Thu, 15 Oct 2009 07:51:12 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MyOrL-0001BZ-G3 for guile-devel@gnu.org; Thu, 15 Oct 2009 07:51:11 -0400 Original-Received: from [199.232.76.173] (port=56532 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MyOrL-0001BN-9i for guile-devel@gnu.org; Thu, 15 Oct 2009 07:51:07 -0400 Original-Received: from mail3-relais-sop.national.inria.fr ([192.134.164.104]:47621) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_ARCFOUR_SHA1:16) (Exim 4.60) (envelope-from ) id 1MyOrK-0000Mw-N8 for guile-devel@gnu.org; Thu, 15 Oct 2009 07:51:07 -0400 X-IronPort-AV: E=Sophos;i="4.44,566,1249250400"; d="scan'208";a="36391115" Original-Received: from laptop-147-210-128-170.labri.fr (HELO nixey) ([147.210.128.170]) by mail3-relais-sop.national.inria.fr with ESMTP/TLS/DHE-RSA-AES128-SHA; 15 Oct 2009 13:51:04 +0200 X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 24 =?iso-8859-1?Q?Vend=E9miaire?= an 218 de la =?iso-8859-1?Q?R=E9volution?= X-PGP-Key-ID: 0xEA52ECF4 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 821D 815D 902A 7EAB 5CEE D120 7FBA 3D4F EB1F 5364 X-OS: x86_64-unknown-linux-gnu In-Reply-To: (Andy Wingo's message of "Thu, 15 Oct 2009 11:42:24 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1 (gnu/linux) X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. 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:9493 Archived-At: Andy Wingo writes: > (define-syntax foo ...) > (load "file-that-needs-foo") > > The load needs to be done relative to the current module, which it is -- > unless it's autocompiling, in which case we go through the autocompile > case in boot-9.scm:924 (not the one in load.c), which is missing an > #:env (current-module). > > Probably needs to be fixed before today's release. Yes indeed. Thanks, Ludo'.