aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2016-06-26 13:02:38 +0200
committerMichael Albinus2016-06-26 13:02:38 +0200
commite68fe57c52a815a4289380a8bdd3eaa1b7e6dc88 (patch)
tree4b62af4897c2501325dd60d8fefc3e04510d5452
parent094aaf226f904638f6da22468674782bd36c18e9 (diff)
downloademacs-e68fe57c52a815a4289380a8bdd3eaa1b7e6dc88.tar.gz
emacs-e68fe57c52a815a4289380a8bdd3eaa1b7e6dc88.zip
Sync with Tramp 2.3.0
* doc/misc/trampver.texi: * lisp/net/trampver.el: Change version to "2.3.0".
-rw-r--r--doc/misc/trampver.texi2
-rw-r--r--lisp/net/trampver.el6
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/misc/trampver.texi b/doc/misc/trampver.texi
index cdd008bc865..6f67f35902a 100644
--- a/doc/misc/trampver.texi
+++ b/doc/misc/trampver.texi
@@ -8,7 +8,7 @@
8@c In the Tramp GIT, the version number is auto-frobbed from 8@c In the Tramp GIT, the version number is auto-frobbed from
9@c configure.ac, so you should edit that file and run 9@c configure.ac, so you should edit that file and run
10@c "autoconf && ./configure" to change the version number. 10@c "autoconf && ./configure" to change the version number.
11@set trampver 2.3.0-pre 11@set trampver 2.3.0
12 12
13@c Other flags from configuration 13@c Other flags from configuration
14@set instprefix /usr/local 14@set instprefix /usr/local
diff --git a/lisp/net/trampver.el b/lisp/net/trampver.el
index 64cc47e26a5..aea260541e9 100644
--- a/lisp/net/trampver.el
+++ b/lisp/net/trampver.el
@@ -6,7 +6,7 @@
6;; Author: Kai Großjohann <kai.grossjohann@gmx.net> 6;; Author: Kai Großjohann <kai.grossjohann@gmx.net>
7;; Keywords: comm, processes 7;; Keywords: comm, processes
8;; Package: tramp 8;; Package: tramp
9;; Version: 2.3.0-pre 9;; Version: 2.3.0
10 10
11;; This file is part of GNU Emacs. 11;; This file is part of GNU Emacs.
12 12
@@ -32,7 +32,7 @@
32;; should be changed only there. 32;; should be changed only there.
33 33
34;;;###tramp-autoload 34;;;###tramp-autoload
35(defconst tramp-version "2.3.0-pre" 35(defconst tramp-version "2.3.0"
36 "This version of Tramp.") 36 "This version of Tramp.")
37 37
38;;;###tramp-autoload 38;;;###tramp-autoload
@@ -54,7 +54,7 @@
54;; Check for Emacs version. 54;; Check for Emacs version.
55(let ((x (if (>= emacs-major-version 23) 55(let ((x (if (>= emacs-major-version 23)
56 "ok" 56 "ok"
57 (format "Tramp 2.3.0-pre is not fit for %s" 57 (format "Tramp 2.3.0 is not fit for %s"
58 (when (string-match "^.*$" (emacs-version)) 58 (when (string-match "^.*$" (emacs-version))
59 (match-string 0 (emacs-version))))))) 59 (match-string 0 (emacs-version)))))))
60 (unless (string-match "\\`ok\\'" x) (error "%s" x))) 60 (unless (string-match "\\`ok\\'" x) (error "%s" x)))