summaryrefslogtreecommitdiff
path: root/lisp/net
diff options
context:
space:
mode:
authorMichael Albinus <michael.albinus@gmx.de>2008-03-30 18:03:25 +0000
committerMichael Albinus <michael.albinus@gmx.de>2008-03-30 18:03:25 +0000
commit0c61d9814ba4ccce428584959e738c22c572fb5a (patch)
treef26313c6f151b3e6f8710396d3f79cb3fe1aeffa /lisp/net
parent1c9c12709b3c95b5952cdb9b84c51bd983a6a724 (diff)
downloademacs-0c61d9814ba4ccce428584959e738c22c572fb5a.tar.gz
* net/trampver.el: Update release number.
Diffstat (limited to 'lisp/net')
-rw-r--r--lisp/net/trampver.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/net/trampver.el b/lisp/net/trampver.el
index b627573f13f..fe59a60e56b 100644
--- a/lisp/net/trampver.el
+++ b/lisp/net/trampver.el
@@ -30,14 +30,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.13"
+(defconst tramp-version "2.1.14-pre"
"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.13 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.14-pre 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)