diff options
| -rw-r--r-- | lisp/gnus/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/gnus/gnus-sum.el | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 1d0e36d6479..cb9888ac092 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-02-06 Katsumi Yamaoka <yamaoka@jpl.org> | ||
| 2 | |||
| 3 | * gnus-sum.el (gnus-summary-show-thread): | ||
| 4 | next-single-char-property-change may return nil in XEmacs. | ||
| 5 | |||
| 1 | 2012-02-06 Lars Ingebrigtsen <larsi@gnus.org> | 6 | 2012-02-06 Lars Ingebrigtsen <larsi@gnus.org> |
| 2 | 7 | ||
| 3 | * gnus-sum.el (gnus-handle-ephemeral-exit): Allow exiting from Gnus | 8 | * gnus-sum.el (gnus-handle-ephemeral-exit): Allow exiting from Gnus |
diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el index c7f80ec1512..c17f16ef212 100644 --- a/lisp/gnus/gnus-sum.el +++ b/lisp/gnus/gnus-sum.el | |||
| @@ -11579,7 +11579,10 @@ Returns nil if no thread was there to be shown." | |||
| 11579 | (beg (progn (beginning-of-line) (if (bobp) (point) (1- (point))))) | 11579 | (beg (progn (beginning-of-line) (if (bobp) (point) (1- (point))))) |
| 11580 | (eoi (when end | 11580 | (eoi (when end |
| 11581 | (if (fboundp 'next-single-char-property-change) | 11581 | (if (fboundp 'next-single-char-property-change) |
| 11582 | (next-single-char-property-change end 'invisible) | 11582 | (if (featurep 'xemacs) |
| 11583 | (or (next-single-char-property-change end 'invisible) | ||
| 11584 | (point-max)) | ||
| 11585 | (next-single-char-property-change end 'invisible)) | ||
| 11583 | (while (progn | 11586 | (while (progn |
| 11584 | (end-of-line 2) | 11587 | (end-of-line 2) |
| 11585 | (and (not (eobp)) | 11588 | (and (not (eobp)) |