diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-04-20 18:24:05 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-04-20 18:24:05 +0000 |
commit | 03832c9d5b52e0d47b776f4a74854fdea84aeff9 (patch) | |
tree | a2679899a728e40546b76135146511b56942da78 /lisp/textmodes | |
parent | c39bed4bb71cf6be70e730d4c3cd033328073b1a (diff) | |
download | emacs-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.el | 1 |
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))) |