Merge from emacs--rel--22
[bpt/emacs.git] / lisp / net / trampver.el
CommitLineData
bce04fee 1;;; -*- mode: Emacs-Lisp; coding: utf-8; -*-
b1a2b924
KG
2;;; trampver.el --- Transparent Remote Access, Multiple Protocol
3;;; lisp/trampver.el. Generated from trampver.el.in by configure.
4
d7a0267c 5;; Copyright (C) 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
b1a2b924 6
37cc095b 7;; Author: Kai Großjohann <kai.grossjohann@gmx.net>
b1a2b924
KG
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
ceaeecb0 14;; the Free Software Foundation; either version 3, or (at your option)
b1a2b924
KG
15;; 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
00d6fd04
MA
23;; along with GNU Emacs; see the file COPYING. If not, see
24;; <http://www.gnu.org/licenses/>.
b1a2b924
KG
25
26;;; Code:
27
28;; In the Tramp CVS repository, the version numer and the bug report address
29;; are auto-frobbed from configure.ac, so you should edit that file and run
00d6fd04
MA
30;; "autoconf && ./configure" to change them. (X)Emacs version check is defined
31;; in macro AC_EMACS_INFO of aclocal.m4; should be changed only there.
b1a2b924 32
bce04fee 33(defconst tramp-version "2.1.11-pre"
b1a2b924
KG
34 "This version of Tramp.")
35
340b8d4f 36(defconst tramp-bug-report-address "tramp-devel@gnu.org"
b1a2b924
KG
37 "Email address to send bug reports to.")
38
00d6fd04 39;; Check for (X)Emacs version.
bce04fee 40(let ((x (if (or (< emacs-major-version 21) (and (featurep 'xemacs) (< emacs-minor-version 4))) (format "Tramp 2.1.11-pre is not fit for %s" (when (string-match "^.*$" (emacs-version)) (match-string 0 (emacs-version)))) "ok")))
00d6fd04
MA
41 (unless (string-match "\\`ok\\'" x) (error x)))
42
b1a2b924
KG
43(provide 'trampver)
44
ab5796a9 45;;; arch-tag: 443576ca-f8f1-4bb1-addc-5c70861e93b1
b1a2b924 46;;; trampver.el ends here