Fixed bug reported by Heinz Diehl: don't try to autodecrypt message in draft
[more-wl.git] / elmo / elmo-version.el
blob4a2a840554993b2111543b445399f3a032318b06
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)
15 ;; any later version.
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.
28 ;;; Commentary:
30 ;; Put the following lines to each file of ELMO package.
32 ;; (require 'product)
33 ;; (product-provide (provide FEATURE) (require 'elmo-version))
35 ;;; Code:
37 (require 'product)
38 (provide 'elmo-version) ; before product-provide
40 ;; product-define in the first place
41 (product-provide 'elmo-version
42 ;; Don't forget to run `make update-version' and `make test'.
43 ;; Don't forget to check codename in `wl-version.el'.
44 (product-define "ELMO" nil '(2 15 6)))
46 ;; set version-string
47 (product-version-as-string 'elmo-version)
49 (defun elmo-version ()
50 "Return ELMO version."
51 (product-string-1 'elmo-version))
53 ;; for backward compatibility
54 (defconst elmo-appname (product-name (product-find 'elmo-version)))
55 (make-obsolete-variable
56 'elmo-appname
57 "use (product-name (product-find 'elmo-version)) instead.")
59 (defconst elmo-version (product-version-string (product-find 'elmo-version)))
60 (make-obsolete-variable
61 'elmo-version
62 "use (product-version-string (product-find 'elmo-version)) instead.")
64 ;;; elmo-version.el ends here