aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorKatsumi Yamaoka2011-04-11 00:28:41 +0000
committerKatsumi Yamaoka2011-04-11 00:28:41 +0000
commitf8342cf5441a22fdc1e3e815ca597d19b366622a (patch)
treea9836315dc786603d247d60bff626723966da2e0 /lisp
parent369e974dc086452033227a5d350c357602c6274e (diff)
downloademacs-f8342cf5441a22fdc1e3e815ca597d19b366622a.tar.gz
emacs-f8342cf5441a22fdc1e3e815ca597d19b366622a.zip
gnus-art.el (article-treat-date): Assume that gnus-article-date-headers may be a group parameter.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/gnus/ChangeLog5
-rw-r--r--lisp/gnus/gnus-art.el6
2 files changed, 10 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index baabe5f65b9..f40f65063a2 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,8 @@
12011-04-11 Katsumi Yamaoka <yamaoka@jpl.org>
2
3 * gnus-art.el (article-treat-date): Assume that
4 gnus-article-date-headers may be a group parameter.
5
12011-04-07 Teodor Zlatanov <tzz@lifelogs.com> 62011-04-07 Teodor Zlatanov <tzz@lifelogs.com>
2 7
3 * gnus-registry.el (gnus-registry-handle-action): More debugging. 8 * gnus-registry.el (gnus-registry-handle-action): More debugging.
diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el
index 97677988f0a..e03c787d995 100644
--- a/lisp/gnus/gnus-art.el
+++ b/lisp/gnus/gnus-art.el
@@ -3407,7 +3407,11 @@ lines forward."
3407 (setq ended t))))) 3407 (setq ended t)))))
3408 3408
3409(defun article-treat-date () 3409(defun article-treat-date ()
3410 (article-date-ut gnus-article-date-headers t)) 3410 (article-date-ut (if (gnus-buffer-live-p gnus-summary-buffer)
3411 (with-current-buffer gnus-summary-buffer
3412 gnus-article-date-headers)
3413 gnus-article-date-headers)
3414 t))
3411 3415
3412(defun article-date-ut (&optional type highlight date-position) 3416(defun article-date-ut (&optional type highlight date-position)
3413 "Convert DATE date to TYPE in the current article. 3417 "Convert DATE date to TYPE in the current article.