(mime-edit-touched-flag): Define by `defvar'.
authormorioka <morioka>
Sun, 7 Jun 1998 15:00:32 +0000 (15:00 +0000)
committermorioka <morioka>
Sun, 7 Jun 1998 15:00:32 +0000 (15:00 +0000)
(mime-edit-mode): Don't check `mime-edit-touched-flag' is bound or
not.

mime-edit.el

index 30fcc4b..9ad6408 100644 (file)
@@ -767,6 +767,8 @@ Tspecials means any character that matches with it in header must be quoted.")
 ;;; @ functions
 ;;;
 
+(defvar mime-edit-touched-flag nil)
+
 ;;;###autoload
 (defun mime-edit-mode ()
   "MIME minor mode for editing the tagged MIME message.
@@ -902,8 +904,7 @@ User customizable variables (not documented all of them):
   (interactive)
   (if mime-edit-mode-flag
       (mime-edit-exit)
-    (if (and (boundp 'mime-edit-touched-flag)
-            mime-edit-touched-flag)
+    (if mime-edit-touched-flag
        (mime-edit-again)
       (make-local-variable 'mime-edit-touched-flag)
       (setq mime-edit-touched-flag t)