From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/17188 Path: main.gmane.org!not-for-mail From: Per Abrahamsen Newsgroups: gmane.emacs.gnus.general Subject: Re: pgnus 0.29 and quote coloring in message display Date: 16 Sep 1998 18:48:40 +0200 Organization: The Church of Emacs Sender: owner-ding@hpc.uh.edu Message-ID: References: <199809161449.KAA26304@alderaan.gsfc.nasa.gov> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: main.gmane.org 1035155934 32071 80.91.224.250 (20 Oct 2002 23:18:54 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 23:18:54 +0000 (UTC) Cc: Gnus Mailing List Return-Path: Original-Received: from gizmo.hpc.uh.edu (gizmo.hpc.uh.edu [129.7.102.31]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id MAA05643 for ; Wed, 16 Sep 1998 12:49:43 -0400 (EDT) Original-Received: from sina.hpc.uh.edu (sina.hpc.uh.edu [129.7.3.5]) by gizmo.hpc.uh.edu (8.7.6/8.7.3) with ESMTP id LAF04869; Wed, 16 Sep 1998 11:20:37 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Wed, 16 Sep 1998 11:49:13 -0500 (CDT) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [209.195.19.139]) by sina.hpc.uh.edu (8.7.3/8.7.3) with ESMTP id LAA21214 for ; Wed, 16 Sep 1998 11:49:03 -0500 (CDT) Original-Received: from sheridan.dina.kvl.dk (root@sheridan.dina.kvl.dk [130.225.40.227]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id MAA05627 for ; Wed, 16 Sep 1998 12:48:50 -0400 (EDT) Original-Received: from zuse.dina.kvl.dk (zuse.dina.kvl.dk [130.225.40.245]) by sheridan.dina.kvl.dk (8.9.0.Beta5/8.9.0.Beta5) with ESMTP id SAA05767; Wed, 16 Sep 1998 18:49:06 +0200 Original-Received: (abraham@localhost) by zuse.dina.kvl.dk (8.6.12/8.6.4) id SAA12359; Wed, 16 Sep 1998 18:48:40 +0200 Original-To: "Edward J. Sabol" X-Face: +kRV2]2q}lixHkE{U)mY#+6]{AH=yN~S9@IFiOa@X6?GM|8MBp/ Original-Lines: 23 X-Mailer: Gnus v5.6.42/Emacs 20.2 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:17188 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:17188 "Edward J. Sabol" writes: > gnus-article-wash-header-hook > gnus-article-wash-body-hook > gnus-article-display-header-hook > gnus-article-display-body-hook Another posibility would be to use the occasion to switch to boolean options for turning each feature on and of, and let the hooks be nil as default. Non-nil hooks are suspect anyway, since they lead to customization that depends on the order you load things. E.g. (add-hook 'some-gnus-hook 'my-function) (require 'gnus) will give different results than (require 'gnus) (add-hook 'some-gnus-hook 'my-function) unless the default value for `some-gnus-hook' is nil.