From 04e11cddf246396d7dbff6ecf992210a5072357f Mon Sep 17 00:00:00 2001 From: okada Date: Fri, 1 Feb 2002 03:29:12 +0000 Subject: [PATCH] * elmo-nntp.el (elmo-nntp-list-folders-get-cache): Fix. --- elmo/ChangeLog | 4 ++++ elmo/elmo-nntp.el | 7 ++++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/elmo/ChangeLog b/elmo/ChangeLog index 919a59f..c894b86 100644 --- a/elmo/ChangeLog +++ b/elmo/ChangeLog @@ -1,3 +1,7 @@ +2002-02-01 Kenichi OKADA + + * elmo-nntp.el (elmo-nntp-list-folders-get-cache): Fix. + 2002-01-31 Yuuichi Teranishi * elmo-nntp.el (elmo-nntp-list-folders-get-cache): Use group and server diff --git a/elmo/elmo-nntp.el b/elmo/elmo-nntp.el index ea5decb..0c22db6 100644 --- a/elmo/elmo-nntp.el +++ b/elmo/elmo-nntp.el @@ -432,9 +432,10 @@ Don't cache if nil.") (erase-buffer) (insert (nth 3 elmo-nntp-list-folders-cache)) (goto-char (point-min)) - (or (string= folder "") - (and folder - (keep-lines (concat "^" (regexp-quote folder) "\\.")))) + (debug) + (or (string= group "") + (and group + (keep-lines (concat "^" (regexp-quote group) "\\.")))) t ))))) -- 1.7.10.4