(mime-editor/enclose-region): fixed for new format.
authormorioka <morioka>
Sat, 25 May 1996 15:36:58 +0000 (15:36 +0000)
committermorioka <morioka>
Sat, 25 May 1996 15:36:58 +0000 (15:36 +0000)
mime-edit.el

index 839afc4..9db477c 100644 (file)
@@ -9,7 +9,7 @@
 ;;; 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.6 $
+;;; Version: $Revision: 0.7 $
 ;;; 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.6 1996-05-25 15:15:03 morioka Exp $")
+  "$Id: mime-edit.el,v 0.7 1996-05-25 15:36:58 morioka Exp $")
 
 (defconst mime-editor/version (get-version-string mime-editor/RCS-ID))
 
@@ -2149,16 +2149,12 @@ a recording host instead of local host."
   (save-excursion
     (goto-char beg)
     (let ((current (point))
-         exist-prev-tag)
-      (save-excursion
-       (if (mime-editor/goto-tag)
-           (or (eq current (match-beginning 0))
-               (setq exist-prev-tag t)
-               )))
+         need-new-line)
+      (or (bolp)
+         (setq need-new-line t))
       (save-restriction
        (narrow-to-region beg end)
-       (goto-char beg)
-        (if exist-prev-tag
+       (if need-new-line
            (insert "\n")
          )
        (insert (format "--<<%s>>-{\n" type))