From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/60295 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.general Subject: Re: executable-find moved to files.el in Emacs 22 Date: Fri, 13 May 2005 17:39:47 +0900 Organization: Emacsen advocacy group Message-ID: References: <8764xnk0gq.fsf@arnested.dk> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1115973281 27466 80.91.229.2 (13 May 2005 08:34:41 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 13 May 2005 08:34:41 +0000 (UTC) Original-X-From: ding-owner+M8823@lists.math.uh.edu Fri May 13 10:34:38 2005 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DWVbo-0002CH-6N for ding-account@gmane.org; Fri, 13 May 2005 10:33:26 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu ident=lists) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1DWViN-0007R9-00; Fri, 13 May 2005 03:40:11 -0500 Original-Received: from util2.math.uh.edu ([129.7.128.23]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1DWViG-0007R3-00 for ding@lists.math.uh.edu; Fri, 13 May 2005 03:40:04 -0500 Original-Received: from quimby.gnus.org ([80.91.224.244]) by util2.math.uh.edu with esmtp (Exim 4.30) id 1DWViB-0006i2-3X for ding@lists.math.uh.edu; Fri, 13 May 2005 03:39:59 -0500 Original-Received: from washington.hostforweb.net ([69.61.11.2]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1DWVi9-000199-00 for ; Fri, 13 May 2005 10:39:58 +0200 Original-Received: from localhost ([127.0.0.1]) by washington.hostforweb.net with esmtpa (Exim 4.44) id 1DWVi3-0006Oc-AR for ding@gnus.org; Fri, 13 May 2005 04:39:51 -0400 Original-To: ding@gnus.org X-Face: #kKnN,xUnmKia.'[pp`;Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu;B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.110004 (No Gnus v0.4) Emacs/22.0.50 (gnu/linux) Cancel-Lock: sha1:EUj5fX54zS6wRAgof7/ZHGk2UYE= X-Hashcash: 1:20:050513:ding@gnus.org::HuY0+cUPrKrwdQZt:00001m+E X-Antivirus-Scanner: Clean mail though you should still use an Antivirus X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - washington.hostforweb.net X-AntiAbuse: Original Domain - gnus.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - jpl.org X-Source: X-Source-Args: X-Source-Dir: X-Spam-Score: -4.8 (----) Precedence: bulk Original-Sender: ding-owner@lists.math.uh.edu Xref: news.gmane.org gmane.emacs.gnus.general:60295 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:60295 >>>>> In <8764xnk0gq.fsf@arnested.dk> Arne J=F8rgensen wrote: > Hi, > `executable-find' has just been moved from `executable' to `files' in > Emacs 22. > This patch fixes the two autoloads of `executable-find' in Gnus. [...] > - (autoload 'executable-find "executable") > + (if (>=3D emacs-major-version 22) > + (autoload 'executable-find "files") > + (autoload 'executable-find "executable")) files.el is always loaded, isn't it? emacs-22.0.50 -batch -q -no-site-file -eval '(message "%s" (fboundp (quote = executable-find)))' t And the docstring for `autoload' says: If function is already defined other than as an autoload, this does nothing and returns nil. Regards,