gnus-art.el (article-treat-date): Assume that gnus-article-date-headers may be a group parameter.
This commit is contained in:
parent
369e974dc0
commit
f8342cf544
2 changed files with 10 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2011-04-11 Katsumi Yamaoka <yamaoka@jpl.org>
|
||||
|
||||
* gnus-art.el (article-treat-date): Assume that
|
||||
gnus-article-date-headers may be a group parameter.
|
||||
|
||||
2011-04-07 Teodor Zlatanov <tzz@lifelogs.com>
|
||||
|
||||
* gnus-registry.el (gnus-registry-handle-action): More debugging.
|
||||
|
|
|
@ -3407,7 +3407,11 @@ lines forward."
|
|||
(setq ended t)))))
|
||||
|
||||
(defun article-treat-date ()
|
||||
(article-date-ut gnus-article-date-headers t))
|
||||
(article-date-ut (if (gnus-buffer-live-p gnus-summary-buffer)
|
||||
(with-current-buffer gnus-summary-buffer
|
||||
gnus-article-date-headers)
|
||||
gnus-article-date-headers)
|
||||
t))
|
||||
|
||||
(defun article-date-ut (&optional type highlight date-position)
|
||||
"Convert DATE date to TYPE in the current article.
|
||||
|
|
Loading…
Add table
Reference in a new issue