gnus-sum.el (gnus-summary-show-thread): Revert last two changes.
authorKatsumi Yamaoka <yamaoka@jpl.org>
Tue, 7 Feb 2012 06:35:08 +0000 (06:35 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Tue, 7 Feb 2012 06:35:08 +0000 (06:35 +0000)
lisp/ChangeLog
lisp/gnus-sum.el

index 8d8d545..9d6153b 100644 (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>
 
        * message.el (smtpmail-smtp-user): Silence compiler warning.
index cd836dd..c8ada4b 100644 (file)
@@ -11594,10 +11594,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))