From a90003b1d9e1ae21e70012ea2af35fd819af8196 Mon Sep 17 00:00:00 2001 From: yamaoka Date: Mon, 12 Apr 2004 21:53:04 +0000 Subject: [PATCH] Synch to No Gnus 200404121515. --- lisp/ChangeLog | 6 ++++++ lisp/spam-stat.el | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 55ab168..b900469 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2004-04-12 Teodor Zlatanov + + * spam-stat.el (spam-stat-buffer-change-to-spam) + (spam-stat-buffer-change-to-non-spam): change (error) to + (gnus-message 8) invocation + 2004-04-12 Katsumi Yamaoka * nntp.el (nntp-via-netcat-command): New variable. diff --git a/lisp/spam-stat.el b/lisp/spam-stat.el index e0265fa..2fdad4e 100644 --- a/lisp/spam-stat.el +++ b/lisp/spam-stat.el @@ -356,7 +356,7 @@ Use `spam-stat-ngood', `spam-stat-nbad', `spam-stat-good', (lambda (word count) (let ((entry (gethash word spam-stat))) (if (not entry) - (error "This buffer has unknown words in it") + (gnus-message 8 "This buffer has unknown words in it") (spam-stat-set-good entry (- (spam-stat-good entry) count)) (spam-stat-set-bad entry (+ (spam-stat-bad entry) count)) (spam-stat-set-score entry (spam-stat-compute-score entry)) @@ -372,7 +372,7 @@ Use `spam-stat-ngood', `spam-stat-nbad', `spam-stat-good', (lambda (word count) (let ((entry (gethash word spam-stat))) (if (not entry) - (error "This buffer has unknown words in it") + (gnus-message 8 "This buffer has unknown words in it") (spam-stat-set-good entry (+ (spam-stat-good entry) count)) (spam-stat-set-bad entry (- (spam-stat-bad entry) count)) (spam-stat-set-score entry (spam-stat-compute-score entry)) -- 1.7.10.4