]> git.eshelyaron.com Git - emacs.git/commitdiff
(fill-nobreak-p): Replace obsolete alias
authorDan Nicolaescu <dann@ics.uci.edu>
Fri, 26 Oct 2007 20:35:31 +0000 (20:35 +0000)
committerDan Nicolaescu <dann@ics.uci.edu>
Fri, 26 Oct 2007 20:35:31 +0000 (20:35 +0000)
line-move-invisible-p with invisible-p, it was removed on
2007-08-29.

lisp/ChangeLog
lisp/textmodes/fill.el

index 697789e7e174cae8b85dc7142c2daf5960ab8fac..e42a3b39df00d52f2fd68d433906b58676cfd690 100644 (file)
@@ -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;
index 9723568f2205fed72d001ee56662e8b726ccd41b..6a0eb7a42cc0f6b71070c32a8386cf24bcb60342 100644 (file)
@@ -344,7 +344,7 @@ be tested.  If it returns t, fill commands do not break the line there."
 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.