;;; Maintainer: MORIOKA Tomohiko <morioka@jaist.ac.jp>
;;; Created: 1994/08/21 renamed from mime.el by UMEDA Masanobu;
;;; 1996/05/24 renamed from tm-edit.el
-;;; Version: $Revision: 0.12 $
+;;; Version: $Revision: 0.13 $
;;; Keywords: mail, news, MIME, multimedia, multilingual
;;;
;;; This file is part of SEMI (September, Emacs MIME Interface)
;;;
(defconst mime-editor/RCS-ID
- "$Id: mime-edit.el,v 0.12 1996-05-25 20:47:32 morioka Exp $")
+ "$Id: mime-edit.el,v 0.13 1996-05-26 02:10:08 morioka Exp $")
(defconst mime-editor/version (get-version-string mime-editor/RCS-ID))
))
(if hide-p
(progn
- ;;(mime-flag-region (point-min) (1- (point-max)) ?\^M)
- (invisible-region (point-min) (1- (point-max)))
+ (invisible-region (point-min) (point-max))
(goto-char (point-max))
)
))
;; Move to the end of this text.
(if (re-search-forward mime-editor/tag-regexp nil 'move)
;; Don't forget a multiline tag.
- (goto-char (1- (match-beginning 0)))
+ (goto-char (match-beginning 0))
)
(point)
))
(let ((beg (point))
(end (mime-editor/content-end))
)
- (goto-char (1+ end))
+ (goto-char end)
(or (looking-at mime-editor/beginning-tag-regexp)
(eobp)
(insert (mime-make-text-tag) "\n")