projects
/
elisp
/
gnus.git-
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4913498
)
Synch with Oort Gnus.
author
yamaoka
<yamaoka>
Wed, 29 Aug 2001 07:35:49 +0000
(07:35 +0000)
committer
yamaoka
<yamaoka>
Wed, 29 Aug 2001 07:35:49 +0000
(07:35 +0000)
lisp/ChangeLog
patch
|
blob
|
history
lisp/flow-fill.el
patch
|
blob
|
history
diff --git
a/lisp/ChangeLog
b/lisp/ChangeLog
index
3f3acd2
..
edf0a93
100644
(file)
--- a/
lisp/ChangeLog
+++ b/
lisp/ChangeLog
@@
-1,3
+1,7
@@
+2001-08-29 00:00:00 ShengHuo ZHU <zsh@cs.rochester.edu>
+
+ * flow-fill.el (fill-flowed): eol might be point-max.
+
2001-08-27 Simon Josefsson <jas@extundo.com>
* nnml.el (nnml-request-update-info): Fix message.
diff --git
a/lisp/flow-fill.el
b/lisp/flow-fill.el
index
3a37088
..
8a9bea0
100644
(file)
--- 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)