Add 2011 to FSF/AIST copyright years.
[bpt/emacs.git] / lisp / net / trampver.el
1 ;;; trampver.el --- Transparent Remote Access, Multiple Protocol
2 ;;; lisp/trampver.el. Generated from trampver.el.in by configure.
3
4 ;; Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009,
5 ;; 2010, 2011 Free Software Foundation, Inc.
6
7 ;; Author: Kai Großjohann <kai.grossjohann@gmx.net>
8 ;; Keywords: comm, processes
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs 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 3 of the License, or
15 ;; (at your option) any later version.
16
17 ;; GNU Emacs 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.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24
25 ;;; Code:
26
27 ;; In the Tramp CVS repository, the version number and the bug report
28 ;; address are auto-frobbed from configure.ac, so you should edit that
29 ;; file and run "autoconf && ./configure" to change them. (X)Emacs
30 ;; version check is defined in macro AC_EMACS_INFO of aclocal.m4;
31 ;; should be changed only there.
32
33 (defconst tramp-version "2.1.20"
34 "This version of Tramp.")
35
36 (defconst tramp-bug-report-address "tramp-devel@gnu.org"
37 "Email address to send bug reports to.")
38
39 ;; Check for (X)Emacs version.
40 (let ((x (if (or (>= emacs-major-version 22) (and (featurep 'xemacs) (= emacs-major-version 21) (>= emacs-minor-version 4))) "ok" (format "Tramp 2.1.20 is not fit for %s" (when (string-match "^.*$" (emacs-version)) (match-string 0 (emacs-version)))))))
41 (unless (string-match "\\`ok\\'" x) (error "%s" x)))
42
43 (provide 'trampver)
44
45 ;; arch-tag: 443576ca-f8f1-4bb1-addc-5c70861e93b1
46 ;;; trampver.el ends here
47
48 ;; Local Variables:
49 ;; mode: Emacs-Lisp
50 ;; coding: utf-8
51 ;; End: