Gnus development mailing list
 help / color / mirror / Atom feed
* [bug] gnus-ignored-from-addresses set incorrectly
@ 1998-11-10 18:44 Colin Rafferty
  0 siblings, 0 replies; only message in thread
From: Colin Rafferty @ 1998-11-10 18:44 UTC (permalink / raw)


I just upgraded from 0.40 to 0.42, and the manner in which
gnus-ignored-from-addresses breaks on me.  It assumes that
user-mail-address is non-nil.

This is incorrect.

1998-11-10  Colin Rafferty  <colin@xemacs.org>

	* gnus-sum.el (gnus-ignored-from-addresses): Only quote
	user-mail-address if non-nil.

--- gnus-sum.el~	Sat Nov  7 19:04:33 1998
+++ gnus-sum.el	Mon Nov  9 15:21:54 1998
@@ -778,7 +778,7 @@
   :group 'gnus-summary
   :type '(repeat symbol))
 
-(defcustom gnus-ignored-from-addresses (regexp-quote user-mail-address)
+(defcustom gnus-ignored-from-addresses (and user-mail-address (regexp-quote user-mail-address))
   "*Regexp of From headers that may be suppressed in favor of To headers."
   :group 'gnus-summary
   :type 'regexp)


;; Colin


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~1998-11-10 18:44 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1998-11-10 18:44 [bug] gnus-ignored-from-addresses set incorrectly Colin Rafferty

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).