# HG changeset patch # User Dan Nicolaescu # Date 1193430931 0 # Node ID 2b92bd846058003e53567f255e4d282c3ef78a96 # Parent 919974c09488940a8eb1242b10bce24ef8f8c1e8 (fill-nobreak-p): Replace obsolete alias line-move-invisible-p with invisible-p, it was removed on 2007-08-29. diff -r 919974c09488 -r 2b92bd846058 lisp/ChangeLog --- 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 + + * 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 * files.el (kill-emacs-query-functions): Doc fix; diff -r 919974c09488 -r 2b92bd846058 lisp/textmodes/fill.el --- 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.