aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2022-06-29 11:08:44 +0200
committerMichael Albinus2022-06-29 11:08:44 +0200
commit3d91d55432f42bc063439d74fbccfe805fbc0034 (patch)
tree78db9b4dda292f8f333257398fb0aeb66047df3e
parent2eba8cad204e4b663809235941d91671d2d8e6da (diff)
downloademacs-3d91d55432f42bc063439d74fbccfe805fbc0034.tar.gz
emacs-3d91d55432f42bc063439d74fbccfe805fbc0034.zip
Update Tramp version (don't merge with master)
* doc/misc/trampver.texi: * lisp/net/trampver.el: Change version to "2.5.3".
-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 a6914a58d08..580d9ba69e4 100644
--- a/doc/misc/trampver.texi
+++ b/doc/misc/trampver.texi
@@ -8,7 +8,7 @@
8@c In the Tramp GIT, the version numbers are auto-frobbed from 8@c In the Tramp GIT, the version numbers are auto-frobbed from
9@c tramp.el, and the bug report address is auto-frobbed from 9@c tramp.el, and the bug report address is auto-frobbed from
10@c configure.ac. 10@c configure.ac.
11@set trampver 2.5.3-pre 11@set trampver 2.5.3
12@set trampurl https://www.gnu.org/software/tramp/ 12@set trampurl https://www.gnu.org/software/tramp/
13@set tramp-bug-report-address tramp-devel@@gnu.org 13@set tramp-bug-report-address tramp-devel@@gnu.org
14@set emacsver 25.1 14@set emacsver 25.1
diff --git a/lisp/net/trampver.el b/lisp/net/trampver.el
index 5863beb2956..c1d58a45f4f 100644
--- a/lisp/net/trampver.el
+++ b/lisp/net/trampver.el
@@ -7,7 +7,7 @@
7;; Maintainer: Michael Albinus <michael.albinus@gmx.de> 7;; Maintainer: Michael Albinus <michael.albinus@gmx.de>
8;; Keywords: comm, processes 8;; Keywords: comm, processes
9;; Package: tramp 9;; Package: tramp
10;; Version: 2.5.3-pre 10;; Version: 2.5.3
11;; Package-Requires: ((emacs "25.1")) 11;; Package-Requires: ((emacs "25.1"))
12;; Package-Type: multi 12;; Package-Type: multi
13;; URL: https://www.gnu.org/software/tramp/ 13;; URL: https://www.gnu.org/software/tramp/
@@ -40,7 +40,7 @@
40;; ./configure" to change them. 40;; ./configure" to change them.
41 41
42;;;###tramp-autoload 42;;;###tramp-autoload
43(defconst tramp-version "2.5.3-pre" 43(defconst tramp-version "2.5.3"
44 "This version of Tramp.") 44 "This version of Tramp.")
45 45
46;;;###tramp-autoload 46;;;###tramp-autoload
@@ -78,7 +78,7 @@
78;; Check for Emacs version. 78;; Check for Emacs version.
79(let ((x (if (not (string-lessp emacs-version "25.1")) 79(let ((x (if (not (string-lessp emacs-version "25.1"))
80 "ok" 80 "ok"
81 (format "Tramp 2.5.3-pre is not fit for %s" 81 (format "Tramp 2.5.3 is not fit for %s"
82 (replace-regexp-in-string "\n" "" (emacs-version)))))) 82 (replace-regexp-in-string "\n" "" (emacs-version))))))
83 (unless (string-equal "ok" x) (error "%s" x))) 83 (unless (string-equal "ok" x) (error "%s" x)))
84 84