From 9df859e6dfd7bd8f9e5dca378cd3099b77b561fd Mon Sep 17 00:00:00 2001 From: tsuchiya Date: Fri, 8 Jun 2001 13:27:37 +0000 Subject: [PATCH] (nnshimbun-insert-nov): Fixed condition to decide whether `X-Nnshimbun-Id' should be inseted or not. --- ChangeLog | 2 ++ lisp/nnshimbun.el | 8 ++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index e65d8da..646eb69 100644 --- a/ChangeLog +++ b/ChangeLog @@ -10,6 +10,8 @@ (shimbun-mua-use-entire-index): Removed. (nnshimbun-request-article-1): Replace a date string in `gnus-newsgroup-data' only when article header has non-nil value. + (nnshimbun-insert-nov): Fixed condition to decide whether + `X-Nnshimbun-Id' should be inseted or not. 2001-06-08 Katsumi Yamaoka diff --git a/lisp/nnshimbun.el b/lisp/nnshimbun.el index 76f7908..000d067 100644 --- a/lisp/nnshimbun.el +++ b/lisp/nnshimbun.el @@ -372,10 +372,10 @@ also be nil." (standard-output (current-buffer)) (xref (nnshimbun-string-or (shimbun-header-xref header))) (start (point))) - (unless (and (stringp id) - header-id - (string-equal id header-id)) - (setq id nil)) + (and (stringp id) + header-id + (string-equal id header-id) + (setq id nil)) (princ number) (insert "\t" -- 1.7.10.4