compatible with FSF Emacs.
+2000-02-15 Yoshiki Hayashi <yoshiki@xemacs.org>
+
+ * mime-view.el (mime-follow-current-entity): Try to be
+ compatible with FSF Emacs.
+
2000-02-14 Yoshiki Hayashi <yoshiki@xemacs.org>
* EMY 1.13.3 is released.
(erase-buffer)
(unless header-exists
(insert ?\n))
- (insert (buffer-substring-no-properties (car position)
- (cdr position) the-buf))
+ ;; Compatibility kludge.
+ ;; FSF Emacs can only take substring of current-buffer.
+ (insert
+ (save-excursion
+ (set-buffer the-buf)
+ (buffer-substring-no-properties (car position)
+ (cdr position))))
(goto-char (point-min))
(let ((current-entity
(if (and (eq (mime-entity-media-type entity) 'message)