From 2c1aedd9c5bef4f6887002bef21db3611dca439e Mon Sep 17 00:00:00 2001 From: yoichi Date: Tue, 19 Nov 2002 20:37:23 +0000 Subject: [PATCH] * elmo-nntp.el (elmo-nntp-search-primitive): Fix the last change, just return nil instead of error. --- elmo/ChangeLog | 5 +++++ elmo/elmo-nntp.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/elmo/ChangeLog b/elmo/ChangeLog index 9973569..3862ee0 100644 --- a/elmo/ChangeLog +++ b/elmo/ChangeLog @@ -1,3 +1,8 @@ +2002-11-20 Yoichi NAKAYAMA + + * elmo-nntp.el (elmo-nntp-search-primitive): Fix the last change, + just return nil instead of error. + 2002-11-19 Yoichi NAKAYAMA * elmo-nntp.el (elmo-nntp-search-primitive): Cause error when the diff --git a/elmo/elmo-nntp.el b/elmo/elmo-nntp.el index d6bc455..405b605 100644 --- a/elmo/elmo-nntp.el +++ b/elmo/elmo-nntp.el @@ -1164,7 +1164,7 @@ Returns a list of cons cells like (NUMBER . VALUE)" (elmo-list-filter from-msgs result) result))) ((string= "body" search-key) - (error "On-line search by body via nntp is not implemented")) + nil) (t (let ((val (elmo-filter-value condition)) (negative (eq (elmo-filter-type condition) 'unmatch)) -- 1.7.10.4