Add `(provide 'tm-edit)'.
authormorioka <morioka>
Sun, 26 May 1996 05:04:20 +0000 (05:04 +0000)
committermorioka <morioka>
Sun, 26 May 1996 05:04:20 +0000 (05:04 +0000)
Do `(run-hooks 'tm-edit-load-hook)' if variable `mime-edit-load-hook'
is not bound.

mime-edit.el

index c62f030..3c2cfb9 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.13 $
+;;; Version: $Revision: 0.14 $
 ;;; 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.13 1996-05-26 02:10:08 morioka Exp $")
+  "$Id: mime-edit.el,v 0.14 1996-05-26 05:04:20 morioka Exp $")
 
 (defconst mime-editor/version (get-version-string mime-editor/RCS-ID))
 
@@ -2740,7 +2740,11 @@ Content-Type: message/partial; id=%s; number=%d; total=%d\n%s\n"
 ;;;
 
 (provide 'mime-edit)
+(provide 'tm-edit)
 
-(run-hooks 'mime-edit-load-hook)
+(if (boundp 'mime-edit-load-hook)
+    (run-hooks 'mime-edit-load-hook)
+  (run-hooks 'tm-edit-load-hook)
+  )
 
 ;;; mime-edit.el ends here