(emu-modules): Must add emu-mule for MULE.
[elisp/apel.git] / pccl.el
1 ;;; pccl.el --- Portable CCL utility for Mule 1.* and Mule 2.*
2
3 ;; Copyright (C) 1998 Free Software Foundation, Inc.
4 ;; Copyright (C) 1998 Tanaka Akira
5
6 ;; Author: Tanaka Akira <akr@jaist.ac.jp>
7 ;;         Shuhei KOBAYASHI <shuhei-k@jaist.ac.jp>
8 ;; Keywords: emulation, compatibility, Mule
9
10 ;; This file is part of APEL (A Portable Emacs Library).
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 (if (featurep 'mule)
30     (if (>= emacs-major-version 20)
31         ;; for Emacs 20 and XEmacs-mule
32         (require 'pccl-20)
33       ;; for MULE 1.* and 2.*
34       (require 'pccl-om)
35       ))
36
37
38 ;;; @ end
39 ;;;
40
41 (provide 'pccl)
42
43 ;;; pccl.el ends here