aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShengHuo ZHU2002-02-16 19:03:14 +0000
committerShengHuo ZHU2002-02-16 19:03:14 +0000
commit94384150a60c4288978f5e28948ca3d260951e4a (patch)
treedfba9d567e7ae7bcb8698d34d50d573ca607a71f
parent760627fa51df9abc02932d505cabbe2f3c20f88a (diff)
downloademacs-94384150a60c4288978f5e28948ca3d260951e4a.tar.gz
emacs-94384150a60c4288978f5e28948ca3d260951e4a.zip
* gnus-sum.el (gnus-rebuild-thread): Count hidden lines too.
-rw-r--r--lisp/gnus/ChangeLog4
-rw-r--r--lisp/gnus/gnus-sum.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 793cfcf8bc2..2ea593005b6 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,7 @@
12002-02-17 ShengHuo ZHU <zsh@cs.rochester.edu>
2
3 * gnus-sum.el (gnus-rebuild-thread): Count hidden lines too.
4
12002-02-13 ShengHuo ZHU <zsh@cs.rochester.edu> 52002-02-13 ShengHuo ZHU <zsh@cs.rochester.edu>
2 6
3 * gnus-art.el (gnus-article-edit-mode): Use define-derived-mode. 7 * gnus-art.el (gnus-article-edit-mode): Use define-derived-mode.
diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el
index bc172f4b509..c1d781aed82 100644
--- a/lisp/gnus/gnus-sum.el
+++ b/lisp/gnus/gnus-sum.el
@@ -3549,7 +3549,7 @@ If LINE, insert the rebuilt thread starting on line LINE."
3549 (setq thread (gnus-remove-thread id))) 3549 (setq thread (gnus-remove-thread id)))
3550 (setq old-pos (gnus-point-at-bol)) 3550 (setq old-pos (gnus-point-at-bol))
3551 (setq current (save-excursion 3551 (setq current (save-excursion
3552 (and (zerop (forward-line -1)) 3552 (and (re-search-backward "[\r\n]" nil t)
3553 (gnus-summary-article-number)))) 3553 (gnus-summary-article-number))))
3554 ;; If this is a gathered thread, we have to go some re-gathering. 3554 ;; If this is a gathered thread, we have to go some re-gathering.
3555 (when (stringp (car thread)) 3555 (when (stringp (car thread))