Add tinycustom.el and pcustom.el from Mikio Nakajima
[elisp/apel.git] / pcustom.el
1 ;;; pcustom.el -- a portable custom.el.
2 ;; Copyright (C) 1999 Mikio Nakajima <minakaji@osaka.email.ne.jp>
3
4 ;; Author: Mikio Nakajima <minakaji@osaka.email.ne.jp>
5 ;; Maintainer: Mikio Nakajima <minakaji@osaka.email.ne.jp>
6 ;; Version: $Id: pcustom.el,v 1.1 1999-03-16 11:51:29 morioka Exp $
7 ;; Keywords: emulating, custom
8 ;; Last Modified: $Date: 1999-03-16 11:51:29 $
9
10 ;; This file is not part of APEL (A Portable Emacs Library) yet.
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 ;;; Commentary:
28 ;;; Code:
29
30 (condition-case nil
31     (require 'custom)
32   (error (require 'tinycustom)) )
33
34 (provide 'pcustom)
35 ;; end of pcustom.el