From: yamaoka Date: Wed, 29 Aug 2001 07:35:49 +0000 (+0000) Subject: Synch with Oort Gnus. X-Git-Tag: semi-gnus~53 X-Git-Url: http://git.chise.org/gitweb/?p=elisp%2Fgnus.git-;a=commitdiff_plain;h=5486d0464f858bddc7d7c3671e22c39f92b93300 Synch with Oort Gnus. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3f3acd2..edf0a93 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2001-08-29 00:00:00 ShengHuo ZHU + + * flow-fill.el (fill-flowed): eol might be point-max. + 2001-08-27 Simon Josefsson * nnml.el (nnml-request-update-info): Fix message. diff --git a/lisp/flow-fill.el b/lisp/flow-fill.el index 3a37088..8a9bea0 100644 --- a/lisp/flow-fill.el +++ b/lisp/flow-fill.el @@ -96,7 +96,7 @@ (unless sig (let ((fill-prefix (when quote (concat quote " ")))) (fill-region (fill-flowed-point-at-bol) - (1+ (fill-flowed-point-at-eol)) + (min (1+ (fill-flowed-point-at-eol)) (point-max)) 'left 'nosqueeze)))))))) (provide 'flow-fill)