From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Juanma Barranquero" Newsgroups: gmane.emacs.devel Subject: Re: Fload does not set the 'autoload property Date: Thu, 11 Oct 2007 16:27:48 +0200 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1192112902 6956 80.91.229.12 (11 Oct 2007 14:28:22 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 11 Oct 2007 14:28:22 +0000 (UTC) Cc: Emacs Devel To: "Stefan Monnier" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Oct 11 16:28:21 2007 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 1Ifz1B-0005Tn-CR for ged-emacs-devel@m.gmane.org; Thu, 11 Oct 2007 16:28:05 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ifz15-0002fN-97 for ged-emacs-devel@m.gmane.org; Thu, 11 Oct 2007 10:27:59 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Ifz0x-0002YL-FN for emacs-devel@gnu.org; Thu, 11 Oct 2007 10:27:51 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Ifz0v-0002Wv-UV for emacs-devel@gnu.org; Thu, 11 Oct 2007 10:27:51 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ifz0v-0002WK-AC for emacs-devel@gnu.org; Thu, 11 Oct 2007 10:27:49 -0400 Original-Received: from wx-out-0506.google.com ([66.249.82.236]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Ifz0v-0000mi-6Z for emacs-devel@gnu.org; Thu, 11 Oct 2007 10:27:49 -0400 Original-Received: by wx-out-0506.google.com with SMTP id s7so512080wxc for ; Thu, 11 Oct 2007 07:27:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=I47qK94yhacWxgt08Yo7BjcdCKOkr75SVH9ObQRVeZ0=; b=n9a8mg16BR1NfO0Z1k1VRBevLYZt5Va2jeQD25UMPoqfT98jz+UyOON78uw7Yd2WGaGr+N/EwRpc3+5VVPdVPvfY+fwTtF/Q16VpQsBx2BviPYsm6OMdXRdPOwj/oWNlqzBmoepc4vxUdhvktfjSzkNKI2Ntyfr7Uq4aoYa1+Yk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=MKQrXKH/k6azl0kK+P1zAohYyUPQCTWslnfmW10EhB1K3L5bw5d4ZLq1/fwe08ahvxuqt+EWJ6i/BRS2NGXvW0TSc8NSunDF5Ioxz3YkhH/u0DHsREGKHUSC/QHbqfH/IwCYRtq7zLezToHpcwbWK6XrqBO2GEm7Mfy2rhQ7PRM= Original-Received: by 10.90.52.18 with SMTP id z18mr3072284agz.1192112868345; Thu, 11 Oct 2007 07:27:48 -0700 (PDT) Original-Received: by 10.90.103.8 with HTTP; Thu, 11 Oct 2007 07:27:48 -0700 (PDT) In-Reply-To: Content-Disposition: inline X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 2) 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:80614 Archived-At: On 10/11/07, Stefan Monnier wrote: > Similarly, if your file contains 2 autoloads (foo1 and foo2), and the file > gets autoloaded via foo1, only foo1's autoload gets saved in the > `autoload' property. Ah, I hadn't checked that. I found the autoload/load problem while trying to determine why unload-feature fails to restore many autoloads. > The way autoloads are saved/restored is currently fundamentally done at the > wrong place. Not urgent enough for admin/FOR-RELEASE, but it should be noted in etc/TODO then, shouldn't it? Juanma