]> git.eshelyaron.com Git - emacs.git/commitdiff
* textmodes/fill.el (fill-region): Don't fill past the end.
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 19 May 2010 03:51:55 +0000 (23:51 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 19 May 2010 03:51:55 +0000 (23:51 -0400)
Fixes: debbugs:6201
lisp/ChangeLog
lisp/textmodes/fill.el

index 1da680a68f959942dfd7821612010f27ef7eb1fa..3346fcf497a6812de3529902185e93fc59b3bd7c 100644 (file)
@@ -1,3 +1,7 @@
+2010-05-19  Uday S Reddy  <u.s.reddy@cs.bham.ac.uk>  (tiny change)
+
+       * textmodes/fill.el (fill-region): Don't fill past the end (bug#6201).
+
 2010-05-18  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * subr.el (read-quoted-char): Resolve modifiers after key
index 1b3cc8dc4d8c48f0f345b86f0c8779abe3602a3f..da6e02bfa2f3468e7761d053324046dcb05ac07e 100644 (file)
@@ -1036,7 +1036,7 @@ space does not end a sentence, so don't break a line there."
          (fill-forward-paragraph -1))
        (if (< (point) beg)
            (goto-char beg))
-       (if (>= (point) initial)
+       (if (and (>= (point) initial) (< (point) end))
            (setq fill-pfx
                  (fill-region-as-paragraph (point) end justify nosqueeze))
          (goto-char end))))