aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2011-01-28 01:41:15 +0000
committerKatsumi Yamaoka2011-01-28 01:41:15 +0000
commitd6f13ac8765373d96bb89a23ee6378c7cd72c402 (patch)
treea2a999afac78698f682a4e846b7693865f676193
parentbb760c5da820ddf0fa0efe5e55b555ff8389675d (diff)
downloademacs-d6f13ac8765373d96bb89a23ee6378c7cd72c402.tar.gz
emacs-d6f13ac8765373d96bb89a23ee6378c7cd72c402.zip
gnus-art.el (article-make-date-line): Limit the length a bit more.
gnus.texi (Article Date): Document gnus-article-update-lapsed-header.
-rw-r--r--doc/misc/ChangeLog4
-rw-r--r--doc/misc/gnus.texi11
-rw-r--r--lisp/gnus/ChangeLog4
-rw-r--r--lisp/gnus/gnus-art.el2
4 files changed, 15 insertions, 6 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index a8a9ca6772b..c37affbf87c 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,3 +1,7 @@
12011-01-26 Lars Ingebrigtsen <larsi@gnus.org>
2
3 * gnus.texi (Article Date): Document gnus-article-update-lapsed-header.
4
12011-01-24 Teodor Zlatanov <tzz@lifelogs.com> 52011-01-24 Teodor Zlatanov <tzz@lifelogs.com>
2 6
3 * message.texi (IDNA): Explain what it is. 7 * message.texi (IDNA): Explain what it is.
diff --git a/doc/misc/gnus.texi b/doc/misc/gnus.texi
index 45aa3f11261..463a1e0af55 100644
--- a/doc/misc/gnus.texi
+++ b/doc/misc/gnus.texi
@@ -9503,15 +9503,16 @@ replace it.
9503An advantage of using Gnus to read mail is that it converts simple bugs 9503An advantage of using Gnus to read mail is that it converts simple bugs
9504into wonderful absurdities. 9504into wonderful absurdities.
9505 9505
9506If you want to have this line updated continually, you can put 9506This line is updated continually by default. If you wish to switch
9507that off, say:
9507 9508
9509@vindex gnus-article-update-lapsed-header
9508@lisp 9510@lisp
9509(gnus-start-date-timer) 9511(setq gnus-article-update-lapsed-header nil)
9510@end lisp 9512@end lisp
9511 9513
9512in your @file{~/.gnus.el} file, or you can run it off of some hook. If 9514in your @file{~/.gnus.el} file. If you want to stop the updating
9513you want to stop the timer, you can use the @code{gnus-stop-date-timer} 9515dynamically, you can use the @code{gnus-stop-date-timer} command.
9514command.
9515 9516
9516@item W T o 9517@item W T o
9517@kindex W T o (Summary) 9518@kindex W T o (Summary)
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 66373f5bbbc..29939cc165a 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,7 @@
12011-01-28 Lars Ingebrigtsen <larsi@gnus.org>
2
3 * gnus-art.el (article-make-date-line): Limit the length a bit more.
4
12011-01-28 Daiki Ueno <ueno@unixuser.org> 52011-01-28 Daiki Ueno <ueno@unixuser.org>
2 6
3 * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Give 7 * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Give
diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el
index 2960e8f8e27..bde599c5f04 100644
--- a/lisp/gnus/gnus-art.el
+++ b/lisp/gnus/gnus-art.el
@@ -3578,7 +3578,7 @@ should replace the \"Date:\" one, or should be added below it."
3578 (concat " (" (article-lapsed-string time segments) ")")) 3578 (concat " (" (article-lapsed-string time segments) ")"))
3579 (> (+ (length date-string) 3579 (> (+ (length date-string)
3580 (length lapsed-string)) 3580 (length lapsed-string))
3581 (+ fill-column 10)) 3581 (+ fill-column 6))
3582 (> segments 0)) 3582 (> segments 0))
3583 (setq segments (1- segments))) 3583 (setq segments (1- segments)))
3584 (if (> segments 0) 3584 (if (> segments 0)