gnus-sum.el (gnus-summary-show-thread): Revert last two changes.

This commit is contained in:
Katsumi Yamaoka 2012-02-07 06:33:51 +00:00
parent fe93bc91f8
commit 75ded89ba5
2 changed files with 7 additions and 4 deletions

View file

@ -1,3 +1,7 @@
2012-02-07 Katsumi Yamaoka <yamaoka@jpl.org>
* gnus-sum.el (gnus-summary-show-thread): Revert last two changes.
2012-02-07 Lars Ingebrigtsen <larsi@gnus.org>
* nnimap.el (nnimap-transform-headers): Remove unused variable.

View file

@ -11581,10 +11581,9 @@ Returns nil if no thread was there to be shown."
(beg (progn (beginning-of-line) (if (bobp) (point) (1- (point)))))
(eoi (when end
(if (fboundp 'next-single-char-property-change)
(if (featurep 'xemacs)
(or (next-single-char-property-change end 'invisible)
(point-max))
(next-single-char-property-change end 'invisible))
;; Note: XEmacs version of n-s-c-p-c may return nil
(or (next-single-char-property-change end 'invisible)
(point-max))
(while (progn
(end-of-line 2)
(and (not (eobp))