changeset 85683:2b92bd846058

(fill-nobreak-p): Replace obsolete alias line-move-invisible-p with invisible-p, it was removed on 2007-08-29.
author Dan Nicolaescu <dann@ics.uci.edu>
date Fri, 26 Oct 2007 20:35:31 +0000
parents 919974c09488
children 4fe615944676
files lisp/ChangeLog lisp/textmodes/fill.el
diffstat 2 files changed, 7 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Fri Oct 26 18:09:36 2007 +0000
+++ b/lisp/ChangeLog	Fri Oct 26 20:35:31 2007 +0000
@@ -1,3 +1,9 @@
+2007-10-26  Dan Nicolaescu  <dann@ics.uci.edu>
+
+	* textmodes/fill.el (fill-nobreak-p): Replace obsolete alias
+	line-move-invisible-p with invisible-p, it was removed on
+	2007-08-29.
+
 2007-10-26  Juanma Barranquero  <lekktu@gmail.com>
 
 	* files.el (kill-emacs-query-functions): Doc fix;
--- a/lisp/textmodes/fill.el	Fri Oct 26 18:09:36 2007 +0000
+++ b/lisp/textmodes/fill.el	Fri Oct 26 20:35:31 2007 +0000
@@ -344,7 +344,7 @@
 Can be customized with the variables `fill-nobreak-predicate'
 and `fill-nobreak-invisible'."
   (or
-   (and fill-nobreak-invisible (line-move-invisible-p (point)))
+   (and fill-nobreak-invisible (invisible-p (point)))
    (unless (bolp)
     (or
      ;; Don't break after a period followed by just one space.