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: unload-feature questions and thoughts Date: Mon, 15 Oct 2007 18:22:38 +0200 Message-ID: References: <858x6atas5.fsf@lola.goethe.zz> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1192468249 24121 80.91.229.12 (15 Oct 2007 17:10:49 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 15 Oct 2007 17:10:49 +0000 (UTC) Cc: emacs-devel@gnu.org To: rms@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Oct 15 19:10:39 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 1IhSkX-0004l4-Dx for ged-emacs-devel@m.gmane.org; Mon, 15 Oct 2007 18:25:02 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IhSkO-0002kJ-Rl for ged-emacs-devel@m.gmane.org; Mon, 15 Oct 2007 12:24:52 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IhSie-0002FP-IQ for emacs-devel@gnu.org; Mon, 15 Oct 2007 12:23:04 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IhSia-0002E6-EU for emacs-devel@gnu.org; Mon, 15 Oct 2007 12:23:03 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IhSia-0002Dw-3f for emacs-devel@gnu.org; Mon, 15 Oct 2007 12:23:00 -0400 Original-Received: from wr-out-0506.google.com ([64.233.184.226]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IhSiZ-0007oQ-Bo for emacs-devel@gnu.org; Mon, 15 Oct 2007 12:22:59 -0400 Original-Received: by wr-out-0506.google.com with SMTP id 50so818863wra for ; Mon, 15 Oct 2007 09:22:40 -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=5MMmlb45Coe2+INZhhRTZpo1f54WUyw9pZIQ51N0RHs=; b=KKelUiz5INVI77SmKe74xW0ISwtUqEkEjzFX+tesvN3sBLE46QWsSmXpWL+6TZPSI6YBOu+brhyEzoI9czaI1OTtWbAzLZOkTxC+5q/IAPVIVsN47E4gmJgPZ2he0/D28J8lywWyi3u8CRJxXTkF5zqn0ltGNXCj2PUr5HeJnoQ= 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=DkC23u81yR0vASkoZUJuNPDH7n03itBp+suy0z8yiyH48W+yL0CLplLPa4XGSRhYaJbKUVCKT/8O6gvC7O3reXNb4t1DvGF5ugvDHRg4kq/zqugGD9D2UTlJyGlaldKQoN3fn91JGYCYlgZhh4gxOI1UuSw27Tig1nDWRmLggYA= Original-Received: by 10.90.120.13 with SMTP id s13mr8995729agc.1192465360497; Mon, 15 Oct 2007 09:22:40 -0700 (PDT) Original-Received: by 10.90.103.8 with HTTP; Mon, 15 Oct 2007 09:22:38 -0700 (PDT) In-Reply-To: Content-Disposition: inline X-detected-kernel: by monty-python.gnu.org: Linux 2.4-2.6 (Google crawlbot) 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:80938 Archived-At: On 10/15/07, Richard Stallman wrote: > Oh, now I see. So after FEATURE-unload-function, unload-feature > would do either ALL the rest of the standard processing, or none? That's the idea, though for finer-grained control FEATURE-unload-function can always modify `unload-hook-features-list' before returning the "continue the standard processing" flag back to `unload-feature'. Juanma