Add tinycustom.el and pcustom.el from Mikio Nakajima
authormorioka <morioka>
Tue, 16 Mar 1999 11:51:30 +0000 (11:51 +0000)
committermorioka <morioka>
Tue, 16 Mar 1999 11:51:30 +0000 (11:51 +0000)
<minakaji@osaka.email.ne.jp>.

ChangeLog
pcustom.el [new file with mode: 0644]
tinycustom.el [new file with mode: 0644]

index 5d6577c..3e4fbfb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+1999-03-13  Mikio Nakajima    <minakaji@osaka.email.ne.jp>
+
+       * tinycustom.el: New file.
+       * pcustom.el: Likewise.
+
+\f
 1999-03-15  MORIOKA Tomohiko  <morioka@jaist.ac.jp>
 
        * APEL: Version 9.14 released.
 
        * APEL: Version 8.4 was released.
 
-       * EMU-ELS: Don't use HIRAGANA LETTER A (\e$(B$"\e(B) to detect character
+       * EMU-ELS: Don't use HIRAGANA LETTER A (\e$B$"\e(B) to detect character
        indexing (Emacs 20.3 or later).
 
 1998-04-20  MORIOKA Tomohiko  <morioka@jaist.ac.jp>
diff --git a/pcustom.el b/pcustom.el
new file mode 100644 (file)
index 0000000..51418f0
--- /dev/null
@@ -0,0 +1,35 @@
+;;; pcustom.el -- a portable custom.el.
+;; Copyright (C) 1999 Mikio Nakajima <minakaji@osaka.email.ne.jp>
+
+;; Author: Mikio Nakajima <minakaji@osaka.email.ne.jp>
+;; Maintainer: Mikio Nakajima <minakaji@osaka.email.ne.jp>
+;; Version: $Id: pcustom.el,v 1.1 1999-03-16 11:51:29 morioka Exp $
+;; Keywords: emulating, custom
+;; Last Modified: $Date: 1999-03-16 11:51:29 $
+
+;; This file is not part of APEL (A Portable Emacs Library) yet.
+
+;; This program is free software; you can redistribute it and/or
+;; modify it under the terms of the GNU General Public License as
+;; published by the Free Software Foundation; either version 2, or (at
+;; your option) any later version.
+
+;; This program is distributed in the hope that it will be useful, but
+;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+;; General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with GNU Emacs; see the file COPYING.  If not, write to the
+;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+;; Boston, MA 02111-1307, USA.
+
+;;; Commentary:
+;;; Code:
+
+(condition-case nil
+    (require 'custom)
+  (error (require 'tinycustom)) )
+
+(provide 'pcustom)
+;; end of pcustom.el
diff --git a/tinycustom.el b/tinycustom.el
new file mode 100644 (file)
index 0000000..47789ad
--- /dev/null
@@ -0,0 +1,61 @@
+;; tinycustom.el -- a tiny custom.el for emulating purpose.
+;; Copyright (C) 1999 Mikio Nakajima <minakaji@osaka.email.ne.jp>
+
+;; Author: Mikio Nakajima <minakaji@osaka.email.ne.jp>
+;; Maintainer: Mikio Nakajima <minakaji@osaka.email.ne.jp>
+;; Version: $Id: tinycustom.el,v 1.1 1999-03-16 11:51:30 morioka Exp $
+;; Keywords: emulating, custom
+;; Last Modified: $Date: 1999-03-16 11:51:30 $
+
+;; This file is not part of APEL (A Portable Emacs Library) yet.
+
+;; This program is free software; you can redistribute it and/or
+;; modify it under the terms of the GNU General Public License as
+;; published by the Free Software Foundation; either version 2, or (at
+;; your option) any later version.
+
+;; This program is distributed in the hope that it will be useful, but
+;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+;; General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with GNU Emacs; see the file COPYING.  If not, write to the
+;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+;; Boston, MA 02111-1307, USA.
+
+;;; Commentary:
+;; Purpose of this program is emulating for who does not have 
+;; `custom.el'.
+;; DEFCUSTOM below has the same effect as the original DEFVAR has.
+;; DEFGROUP and DEFFACE below are just nop macro.
+
+;;; Code:
+(require 'poe)
+
+(defmacro-maybe defgroup (symbol members doc &rest args)
+  "Declare SYMBOL as a customization group containing MEMBERS.
+SYMBOL does not need to be quoted.
+Third arg DOC is the group documentation.
+
+This is a nop defgroup only for emulating purpose.."
+  nil )
+    
+(defmacro-maybe defcustom (symbol value doc &rest args) 
+  "Declare SYMBOL as a customizable variable that defaults to VALUE.
+DOC is the variable documentation.
+
+This is a defcustom only for emulating purpose.
+Its effect is just as same as that of defvar."
+  (` (defvar (, symbol) (, value) (, doc))) )
+    
+(defmacro-maybe defface (symbol value doc &rest args) 
+  "Declare FACE as a customizable face that defaults to SPEC.
+FACE does not need to be quoted.
+
+This is a nop defface only for emulating purpose."
+  nil )
+
+(provide 'tinycustom)
+(provide 'custom)
+;; end of tinycustom.el