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