1 ;;; elmo-version.el -- Version information for ELMO.
3 ;; Copyright (C) 2000-2001 Yuuichi Teranishi <teranisi@gohome.org>
4 ;; Copyright (C) 2000-2001 TAKAHASHI Kaoru <kaoru@kaisei.org>
6 ;; Author: Yuuichi Teranishi <teranisi@gohome.org>
7 ;; TAKAHASHI Kaoru <kaoru@kaisei.org>
8 ;; Keywords: mail, net news
10 ;; This file is part of ELMO (Elisp Library for Message Orchestration).
12 ;; This program is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
17 ;; This program is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
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.
30 ;; Put the following lines to each file of ELMO package.
33 ;; (product-provide (provide FEATURE) (require 'elmo-version))
38 (provide 'elmo-version) ; before product-provide
40 ;; product-define in the first place
41 (product-provide 'elmo-version
42 ;; Don't forget to check `wl-version.el' and Info.
43 (product-define "ELMO" nil '(2 7 4)))
45 ;; For APEL 10.2 or earlier.
46 (defun-maybe product-version-as-string (product)
47 "Return version number of product as a string.
48 PRODUCT is a product structure which returned by `product-define'.
49 If optional argument UPDATE is non-nil, then regenerate
50 `produce-version-string' from `product-version'."
51 (setq product (product-find product))
52 (or (product-version-string product)
53 (and (product-version product)
54 (product-set-version-string product
55 (mapconcat (function int-to-string)
56 (product-version product)
60 (product-version-as-string 'elmo-version)
62 (defun elmo-version ()
63 "Return ELMO version."
64 (product-string-1 'elmo-version))
67 ;; for backward compatibility
68 (defconst elmo-appname (product-name (product-find 'elmo-version)))
69 (make-obsolete-variable
71 "use (product-name (product-find 'elmo-version)) instead.")
73 (defconst elmo-version (product-version-string (product-find 'elmo-version)))
74 (make-obsolete-variable
76 "use (product-version-string (product-find 'elmo-version)) instead.")
78 ;;; elmo-version.el ends here