Update copyright header.
[elisp/semi.git] / mime-setup.el
1 ;;; mime-setup.el --- setup file for MIME viewer and composer.
2
3 ;; Copyright (C) 1995,1996,1997,1998 Free Software Foundation, Inc.
4
5 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
6 ;; Keywords: MIME, multimedia, multilingual, mail, news
7
8 ;; This file is part of SEMI (Setting for Emacs MIME Interfaces).
9
10 ;; This program is free software; you can redistribute it and/or
11 ;; modify it under the terms of the GNU General Public License as
12 ;; published by the Free Software Foundation; either version 2, or (at
13 ;; your option) any later version.
14
15 ;; This program is distributed in the hope that it will be useful, but
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 ;; General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23 ;; Boston, MA 02110-1301, USA.
24
25 ;;; Code:
26
27 (load "mail-mime-setup")
28
29 (condition-case nil
30     (load "gnus-mime-setup")
31   (error (message "gnus-mime-setup is not found."))
32   )
33
34 (condition-case nil
35     (load "emh-setup")
36   (error (message "emh-setup is not found."))
37   )
38
39
40 ;;; @ end
41 ;;;
42
43 (provide 'mime-setup)
44
45 (run-hooks 'mime-setup-load-hook)
46
47 ;;; mime-setup.el ends here