summaryrefslogtreecommitdiff
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2007-04-20 18:24:05 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2007-04-20 18:24:05 +0000
commit03832c9d5b52e0d47b776f4a74854fdea84aeff9 (patch)
treea2679899a728e40546b76135146511b56942da78 /lisp/textmodes
parentc39bed4bb71cf6be70e730d4c3cd033328073b1a (diff)
downloademacs-03832c9d5b52e0d47b776f4a74854fdea84aeff9.tar.gz
(fill-move-to-break-point): Don't inhibit
fill-nobreak-predicate when the break is past fill-column.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/fill.el1
1 files changed, 0 insertions, 1 deletions
diff --git a/lisp/textmodes/fill.el b/lisp/textmodes/fill.el
index 7318a52d8a9..7b4f73c2d1f 100644
--- a/lisp/textmodes/fill.el
+++ b/lisp/textmodes/fill.el
@@ -521,7 +521,6 @@ The break position will be always after LINEBEG and generally before point."
;; Ok, skip at least one word or one \c| character.
;; Meanwhile, don't stop at a period followed by one space.
(let ((to (line-end-position))
- (fill-nobreak-predicate nil) ;to break sooner.
(first t))
(goto-char linebeg)
(while (and (< (point) to) (or first (fill-nobreak-p)))