From: morioka Date: Sun, 26 May 1996 05:04:20 +0000 (+0000) Subject: Add `(provide 'tm-edit)'. X-Git-Tag: Hokutetsu-Ishikawa-new~389 X-Git-Url: http://git.chise.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=76769bfdaf967208743e9ea32ebf79a558016f7a;p=elisp%2Fsemi.git Add `(provide 'tm-edit)'. Do `(run-hooks 'tm-edit-load-hook)' if variable `mime-edit-load-hook' is not bound. --- diff --git a/mime-edit.el b/mime-edit.el index c62f030..3c2cfb9 100644 --- a/mime-edit.el +++ b/mime-edit.el @@ -9,7 +9,7 @@ ;;; Maintainer: MORIOKA Tomohiko ;;; 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) @@ -123,7 +123,7 @@ ;;; (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