1 ;;; apel-ver.el --- Declare APEL version.
3 ;; Copyright (C) 1999,2000,2002 Free Software Foundation, Inc.
5 ;; Author: Shuhei KOBAYASHI <shuhei@aqua.ocn.ne.jp>
6 ;; Keiichi Suzuki <keiichi@nanap.org>
7 ;; Keywords: compatibility
9 ;; This file is part of APEL (A Portable Emacs Library).
11 ;; This program is free software; you can redistribute it and/or
12 ;; modify it under the terms of the GNU General Public License as
13 ;; published by the Free Software Foundation; either version 2, or (at
14 ;; your option) any later version.
16 ;; This program is distributed in the hope that it will be useful, but
17 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 ;; General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with this program; see the file COPYING. If not, write to
23 ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
28 ;; Put the following lines to each file of APEL package.
31 ;; (product-provide (provide FEATURE) (require 'apel-ver))
35 (require 'product) ; beware of circular dependency.
36 (provide 'apel-ver) ; these two files depend on each other.
39 (product-provide 'apel-ver
40 ;; (product-define "APEL" nil '(9 23)) ; comment.
41 ;; (product-define "APEL" nil '(10 0)) ; Released 24 December 1999
42 ;; (product-define "APEL" nil '(10 1)) ; Released 20 January 2000
43 ;; (product-define "APEL" nil '(10 2)) ; Released 01 March 2000
44 ;; (product-define "APEL" nil '(10 3))
45 (product-define "LEMI" nil '(1 14 1))
48 (defun apel-version ()
51 (let ((product-info (product-string-1 'apel-ver t)))
53 (message "%s" product-info)
60 ;;; apel-ver.el ends here