# HG changeset patch # User Richard M. Stallman # Date 1180307852 0 # Node ID dc4ad0560c91cc9ed17822e110ed5c79c27fde00 # Parent ab566d8424889d9a8c12602281e930f1797a31c5 (log-edit-changelog-paragraph): Return point-max as the end of the ChangeLog paragraph when it ends without a line termination. diff -r ab566d842488 -r dc4ad0560c91 lisp/log-edit.el --- a/lisp/log-edit.el Sun May 27 02:23:53 2007 +0000 +++ b/lisp/log-edit.el Sun May 27 23:17:32 2007 +0000 @@ -538,7 +538,7 @@ (point)) (if (re-search-forward "^[ \t\n]*$" nil t) (match-beginning 0) - (point))))) + (point-max))))) (defun log-edit-changelog-subparagraph () "Return the bounds of the ChangeLog subparagraph containing point.