diff options
author | Ben Bacarisse <ben.lists@bsb.me.uk> | 2015-03-23 08:02:01 +0000 |
---|---|---|
committer | Katsumi Yamaoka <yamaoka@jpl.org> | 2015-03-23 08:02:01 +0000 |
commit | 90b46f5b54b8eda06e2c5bcd13d9c6475afe767b (patch) | |
tree | f932a93f7d5a86ea6186661a823f92b3d68bbd1c /lisp/gnus/nnmh.el | |
parent | e7f92aa3d3fb7d5cf88eef374eaeba4dc6b8984f (diff) | |
download | emacs-90b46f5b54b8eda06e2c5bcd13d9c6475afe767b.tar.gz |
lisp/gnus/nnmh.el (nnmh-request-expire-articles): Work for the case nnmail-expiry-target is an nnmh group (bug#20170)
Diffstat (limited to 'lisp/gnus/nnmh.el')
-rw-r--r-- | lisp/gnus/nnmh.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/gnus/nnmh.el b/lisp/gnus/nnmh.el index 9be0c14884e..04270a554cf 100644 --- a/lisp/gnus/nnmh.el +++ b/lisp/gnus/nnmh.el @@ -259,12 +259,12 @@ as unread by Gnus.") &optional server force) (nnmh-possibly-change-directory newsgroup server) (let ((is-old t) + (dir nnmh-current-directory) article rest mod-time) (nnheader-init-server-buffer) (while (and articles is-old) - (setq article (concat nnmh-current-directory - (int-to-string (car articles)))) + (setq article (concat dir (int-to-string (car articles)))) (when (setq mod-time (nth 5 (file-attributes article))) (if (and (nnmh-deletable-article-p newsgroup (car articles)) (setq is-old |