From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Thien-Thi Nguyen Newsgroups: gmane.emacs.devel Subject: Re: Is (provide 'foo) at the start good or bad? Date: Fri, 12 Jun 2009 12:02:23 +0200 Message-ID: <87y6rxpy6o.fsf@ambire.localdomain> References: <21glws7jx732.fsf@gmail.com> <87r5xqw0s8.fsf@uwakimon.sk.tsukuba.ac.jp> <21glski6hwpf.fsf@gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1244801289 22321 80.91.229.12 (12 Jun 2009 10:08:09 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 12 Jun 2009 10:08:09 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Jun 12 12:08:06 2009 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1MF3g6-0000el-9L for ged-emacs-devel@m.gmane.org; Fri, 12 Jun 2009 12:08:06 +0200 Original-Received: from localhost ([127.0.0.1]:40180 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MF3g5-0006q1-N7 for ged-emacs-devel@m.gmane.org; Fri, 12 Jun 2009 06:08:05 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MF3fy-0006ps-Cq for emacs-devel@gnu.org; Fri, 12 Jun 2009 06:07:58 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MF3fx-0006pg-5b for emacs-devel@gnu.org; Fri, 12 Jun 2009 06:07:57 -0400 Original-Received: from [199.232.76.173] (port=53190 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MF3fw-0006pd-Vy for emacs-devel@gnu.org; Fri, 12 Jun 2009 06:07:57 -0400 Original-Received: from smtp-out25.alice.it ([85.33.2.25]:1693) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MF3fw-00069a-9i for emacs-devel@gnu.org; Fri, 12 Jun 2009 06:07:56 -0400 Original-Received: from FBCMMO02.fbc.local ([192.168.68.196]) by smtp-out25.alice.it with Microsoft SMTPSVC(6.0.3790.3959); Fri, 12 Jun 2009 12:07:52 +0200 Original-Received: from FBCMCL01B09.fbc.local ([192.168.171.26]) by FBCMMO02.fbc.local with Microsoft SMTPSVC(6.0.3790.1830); Fri, 12 Jun 2009 12:07:52 +0200 Original-Received: from ambire.localdomain ([79.30.67.46]) by FBCMCL01B09.fbc.local with Microsoft SMTPSVC(6.0.3790.3959); Fri, 12 Jun 2009 12:07:51 +0200 Original-Received: from ttn by ambire.localdomain with local (Exim 4.63) (envelope-from ) id 1MF3aZ-00050p-PI for emacs-devel@gnu.org; Fri, 12 Jun 2009 12:02:23 +0200 In-Reply-To: <21glski6hwpf.fsf@gmail.com> (William Xu's message of "Fri, 12 Jun 2009 08:01:32 +0300") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux) X-OriginalArrivalTime: 12 Jun 2009 10:07:51.0375 (UTC) FILETIME=[A534EDF0:01C9EB45] X-detected-operating-system: by monty-python.gnu.org: Windows 2000 SP4, XP SP1+ X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:111449 Archived-At: () William Xu () Fri, 12 Jun 2009 08:01:32 +0300 (b-hi) (a-hi) Put them under load-path, now if I try (require 'a), i got: ,---- | Debugger entered--Lisp error: (void-function a-hi) [...] `---- So this doesn't really resolve the recursive requires? Does it help if you comment out the load-time calls to `b-hi' and `a-hi'? thi