Gnus development mailing list
 help / color / mirror / Atom feed
From: Colin Rafferty <colin@xemacs.org>
Subject: [bug] gnus-ignored-from-addresses set incorrectly
Date: 10 Nov 1998 13:44:22 -0500	[thread overview]
Message-ID: <vgv1znbe6bd.fsf@ms.com> (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


                 reply	other threads:[~1998-11-10 18:44 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=vgv1znbe6bd.fsf@ms.com \
    --to=colin@xemacs.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).