From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: FIXED!! Re: Clarification of eval-after-load [was: Problem mit symlinks, locate-library and load-history] Date: Mon, 15 May 2006 01:13:33 -0400 Message-ID: References: Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org Content-Type: text/plain; charset=ISO-8859-15 X-Trace: sea.gmane.org 1147670064 29254 80.91.229.2 (15 May 2006 05:14:24 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 15 May 2006 05:14:24 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon May 15 07:14:22 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FfVPR-0004Eu-9N for ged-emacs-devel@m.gmane.org; Mon, 15 May 2006 07:14:21 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FfVPQ-0007se-NG for ged-emacs-devel@m.gmane.org; Mon, 15 May 2006 01:14:20 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FfVPA-0007s9-6M for emacs-devel@gnu.org; Mon, 15 May 2006 01:14:04 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FfVP9-0007rx-JZ for emacs-devel@gnu.org; Mon, 15 May 2006 01:14:03 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FfVP9-0007rs-6a for emacs-devel@gnu.org; Mon, 15 May 2006 01:14:03 -0400 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FfVR3-0005tA-7Q for emacs-devel@gnu.org; Mon, 15 May 2006 01:16:01 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1FfVOf-0002MG-Ja; Mon, 15 May 2006 01:13:33 -0400 Original-To: Alan Mackenzie In-reply-to: (message from Alan Mackenzie on Sun, 14 May 2006 11:07:49 +0000 (GMT)) 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:54484 Archived-At: What is the motive for computing the truename in Fload? I don't like the use of regexp-opt. Can you get rid of that? The function loaded-filename does not seem very useful, and is easy to get rid of, so would you please do so? ! Lisp_Object Qdo_after_load_evaluation ! = intern ("do-after-load-evaluation") ; That symbol should be file-scope, and initialized in syms_of_lread, in the normal way. ! else ! Fsignal (Qerror, ! Fcons (make_string ! ("Fload: can't find do-after-load-evaluation", ! 42), Qnil)) ; ! } It should do nothing, not signal an error. + Lisp_Object Qfile_truename = intern ("file-truename") ; Likewise here.