the function `next-single-property-change' returns nil.
+2001-09-27 Katsumi Yamaoka <yamaoka@jpl.org>
+
+ * mime-edit.el (mime-edit-content-end): Retuen the value of
+ `point-max' when the function `next-single-property-change'
+ returns nil.
+
2001-09-25 Daiki Ueno <ueno@unixuser.org>
* mime-view.el (mime-view-entity-content): New function.
(progn
(goto-char (1+ (match-end 0)))
(if (get-text-property (point) 'mime-edit-invisible)
- (next-single-property-change (point) 'mime-edit-invisible)
+ (or (next-single-property-change (point) 'mime-edit-invisible)
+ (point-max))
;; Move to the end of this text.
(if (re-search-forward mime-edit-tag-regexp nil 'move)
;; Don't forget a multiline tag.