diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2009-02-01 10:44:39 +0000 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2009-02-01 10:44:39 +0000 |
commit | e3c5a1294122e3452a96bf195e7d58cc30e9c580 (patch) | |
tree | 8fbd85007ba873f0597e44e001487e94ed594fac /lisp/net/trampver.el | |
parent | 2dc00ad0c32453ea4d5573ebac7ab041f54330fd (diff) | |
download | emacs-e3c5a1294122e3452a96bf195e7d58cc30e9c580.tar.gz |
* net/trampver.el: Update release number.
Diffstat (limited to 'lisp/net/trampver.el')
-rw-r--r-- | lisp/net/trampver.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/net/trampver.el b/lisp/net/trampver.el index 7e40b4674da..f10f760cac7 100644 --- a/lisp/net/trampver.el +++ b/lisp/net/trampver.el @@ -1,8 +1,8 @@ ;;; trampver.el --- Transparent Remote Access, Multiple Protocol ;;; lisp/trampver.el. Generated from trampver.el.in by configure. -;; Copyright (C) 2003, 2004, 2005, 2006, 2007, -;; 2008, 2009 Free Software Foundation, Inc. +;; Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, +;; 2009 Free Software Foundation, Inc. ;; Author: Kai Großjohann <kai.grossjohann@gmx.net> ;; Keywords: comm, processes @@ -29,14 +29,14 @@ ;; "autoconf && ./configure" to change them. (X)Emacs version check is defined ;; in macro AC_EMACS_INFO of aclocal.m4; should be changed only there. -(defconst tramp-version "2.1.15-pre" +(defconst tramp-version "2.1.15" "This version of Tramp.") (defconst tramp-bug-report-address "tramp-devel@gnu.org" "Email address to send bug reports to.") ;; Check for (X)Emacs version. -(let ((x (if (or (< emacs-major-version 21) (and (featurep 'xemacs) (< emacs-minor-version 4))) (format "Tramp 2.1.15-pre is not fit for %s" (when (string-match "^.*$" (emacs-version)) (match-string 0 (emacs-version)))) "ok"))) +(let ((x (if (or (< emacs-major-version 21) (and (featurep 'xemacs) (< emacs-minor-version 4))) (format "Tramp 2.1.15 is not fit for %s" (when (string-match "^.*$" (emacs-version)) (match-string 0 (emacs-version)))) "ok"))) (unless (string-match "\\`ok\\'" x) (error "%s" x))) (provide 'trampver) |