From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Richard M. Stallman" Newsgroups: gmane.emacs.devel Subject: Re: mh-e/mh-acros.el advices `require' incorrectly Date: Sat, 14 Jan 2006 00:49:04 -0500 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 1137217960 15401 80.91.229.2 (14 Jan 2006 05:52:40 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 14 Jan 2006 05:52:40 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Jan 14 06:52:39 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 1ExeL9-0008KA-3i for ged-emacs-devel@m.gmane.org; Sat, 14 Jan 2006 06:52:39 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ExeNJ-0004ju-Hq for ged-emacs-devel@m.gmane.org; Sat, 14 Jan 2006 00:54:53 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1ExeMK-0004KX-IG for emacs-devel@gnu.org; Sat, 14 Jan 2006 00:53:52 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1ExeMJ-0004KE-UJ for emacs-devel@gnu.org; Sat, 14 Jan 2006 00:53:52 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ExeMJ-0004K8-QP for emacs-devel@gnu.org; Sat, 14 Jan 2006 00:53:51 -0500 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1ExePQ-00089g-7j for emacs-devel@gnu.org; Sat, 14 Jan 2006 00:57:04 -0500 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1ExeHg-00020e-PT; Sat, 14 Jan 2006 00:49:04 -0500 Original-To: Kenichi Handa Original-to: Bill Wohler In-reply-to: (message from Kenichi Handa on Fri, 13 Jan 2006 16:49:48 +0900) 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:49062 Archived-At: The origianl `require' returns FEATURE even if it is already provided, but the adviced `require' returns nil in such a case. Packages in Emacs are not supposed to advise other parts of Emacs. So really the right thing to do is get rid of this advising. It is not clean for `require' to work differently in a certain part of Emacs. Bill, what was the reason for this?