emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/textmodes/fill.el [emacs-unicode-2]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/textmodes/fill.el [emacs-unicode-2]
Date: Fri, 23 Jul 2004 00:48:31 -0400

Index: emacs/lisp/textmodes/fill.el
diff -c emacs/lisp/textmodes/fill.el:1.164.2.2 
emacs/lisp/textmodes/fill.el:1.164.2.3
*** emacs/lisp/textmodes/fill.el:1.164.2.2      Mon Jun 28 07:29:59 2004
--- emacs/lisp/textmodes/fill.el        Fri Jul 23 04:30:39 2004
***************
*** 353,359 ****
       ;; Don't split a line if the rest would look like a new paragraph.
       (unless use-hard-newlines
         (save-excursion
!        (skip-chars-forward " \t") (looking-at paragraph-start)))
       (run-hook-with-args-until-success 'fill-nobreak-predicate)))))
  
  ;; Put `fill-find-break-point-function' property to charsets which
--- 353,364 ----
       ;; Don't split a line if the rest would look like a new paragraph.
       (unless use-hard-newlines
         (save-excursion
!        (skip-chars-forward " \t")
!        ;; If this break point is at the end of the line,
!        ;; which can occur for auto-fill, don't consider the newline
!        ;; which follows as a reason to return t.
!        (and (not (eolp))
!             (looking-at paragraph-start))))
       (run-hook-with-args-until-success 'fill-nobreak-predicate)))))
  
  ;; Put `fill-find-break-point-function' property to charsets which




reply via email to

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