emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r107142: Another minor fix for next-s


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r107142: Another minor fix for next-single-char-property-change.
Date: Mon, 06 Feb 2012 21:59:13 +0800
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 107142
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Mon 2012-02-06 21:59:13 +0800
message:
  Another minor fix for next-single-char-property-change.
  
  * gnus/gnus-sum.el (gnus-summary-show-thread):
  next-single-char-property-change never returns nil (Bug#8657).
modified:
  lisp/gnus/ChangeLog
  lisp/gnus/gnus-sum.el
=== modified file 'lisp/gnus/ChangeLog'
--- a/lisp/gnus/ChangeLog       2012-02-05 06:31:38 +0000
+++ b/lisp/gnus/ChangeLog       2012-02-06 13:59:13 +0000
@@ -1,3 +1,8 @@
+2012-02-06  Chong Yidong  <address@hidden>
+
+       * gnus-sum.el (gnus-summary-show-thread):
+       next-single-char-property-change never returns nil (Bug#8657).
+
 2012-02-05  Lars Ingebrigtsen  <address@hidden>
 
        * nnimap.el (nnimap-open-server): Allow switching the nnoo server

=== modified file 'lisp/gnus/gnus-sum.el'
--- a/lisp/gnus/gnus-sum.el     2012-01-27 03:36:45 +0000
+++ b/lisp/gnus/gnus-sum.el     2012-02-06 13:59:13 +0000
@@ -11579,8 +11579,7 @@
         (beg (progn (beginning-of-line) (if (bobp) (point) (1- (point)))))
         (eoi (when end
                (if (fboundp 'next-single-char-property-change)
-                   (or (next-single-char-property-change end 'invisible)
-                       (point-max))
+                   (next-single-char-property-change end 'invisible)
                  (while (progn
                           (end-of-line 2)
                           (and (not (eobp))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]