Sync with Tramp 2.2.0.
[emacs.git] / lisp / net / trampver.el
blobc66900dfd097647dba6e08480c811cd4a7adc14a
1 ;;; trampver.el --- Transparent Remote Access, Multiple Protocol
2 ;;; lisp/trampver.el. Generated from trampver.el.in by configure.
4 ;; Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009,
5 ;; 2010 Free Software Foundation, Inc.
7 ;; Author: Kai Großjohann <kai.grossjohann@gmx.net>
8 ;; Keywords: comm, processes
9 ;; Package: tramp
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;;; Code:
28 ;; In the Tramp CVS repository, the version number and the bug report
29 ;; address are auto-frobbed from configure.ac, so you should edit that
30 ;; file and run "autoconf && ./configure" to change them. (X)Emacs
31 ;; version check is defined in macro AC_EMACS_INFO of aclocal.m4;
32 ;; should be changed only there.
34 ;;;###tramp-autoload
35 (defconst tramp-version "2.2.0"
36 "This version of Tramp.")
38 ;;;###tramp-autoload
39 (defconst tramp-bug-report-address "tramp-devel@gnu.org"
40 "Email address to send bug reports to.")
42 ;; Check for (X)Emacs version.
43 (let ((x (if (or (>= emacs-major-version 22)
44 (and (featurep 'xemacs)
45 (= emacs-major-version 21)
46 (>= emacs-minor-version 4)))
47 "ok"
48 (format "Tramp 2.2.0 is not fit for %s"
49 (when (string-match "^.*$" (emacs-version))
50 (match-string 0 (emacs-version)))))))
51 (unless (string-match "\\`ok\\'" x) (error "%s" x)))
53 (add-hook 'tramp-unload-hook
54 (lambda ()
55 (unload-feature 'trampver 'force)))
57 (provide 'trampver)
59 ;;; trampver.el ends here
61 ;; Local Variables:
62 ;; mode: Emacs-Lisp
63 ;; coding: utf-8
64 ;; End: