From b42335621c72634895c9ddef3b89b6d679a5ae1c Mon Sep 17 00:00:00 2001 From: Lars Magne Ingebrigtsen Date: Tue, 21 Sep 2010 21:33:35 +0200 Subject: [PATCH] Fix typo: time-subtract. --- lisp/ChangeLog | 2 ++ lisp/nnmail.el | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7f4f121e3..5f9b6690e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2010-09-21 Lars Magne Ingebrigtsen + * nnmail.el (nnmail-expired-article-p): Fix typo: time-subtract. + * nnimap.el (nnimap-find-expired-articles): Don't refer to nnml-inhibit-expiry. diff --git a/lisp/nnmail.el b/lisp/nnmail.el index e17465ab0..95a98352f 100644 --- a/lisp/nnmail.el +++ b/lisp/nnmail.el @@ -1884,7 +1884,7 @@ If TIME is nil, then return the cutoff time for oldness instead." (setq days (days-to-time days)) ;; Compare the time with the current time. (if (null time) - (time-minus (current-time) days) + (time-subtract (current-time) days) (ignore-errors (time-less-p days (time-since time))))))))) (declare-function gnus-group-mark-article-read "gnus-group" (group article)) -- 2.25.1