diff options
| author | Michael Albinus | 2018-12-27 12:24:24 +0100 |
|---|---|---|
| committer | Michael Albinus | 2018-12-27 12:24:24 +0100 |
| commit | 13dfe15ef4bc63ce66daffdc502a92aa9be44d92 (patch) | |
| tree | ae8ef57b796b4498c388aa8c6198e4dc342e540d | |
| parent | 091450811b983a8cdd765c25eb347238d9a4c633 (diff) | |
| download | emacs-13dfe15ef4bc63ce66daffdc502a92aa9be44d92.tar.gz emacs-13dfe15ef4bc63ce66daffdc502a92aa9be44d92.zip | |
Bump Tramp version to 2.4.1
* doc/misc/trampver.texi:
* lisp/net/tramp.el:
* lisp/net/trampver.el: Change version to "2.4.1".
| -rw-r--r-- | doc/misc/trampver.texi | 2 | ||||
| -rw-r--r-- | lisp/net/tramp.el | 2 | ||||
| -rw-r--r-- | lisp/net/trampver.el | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/doc/misc/trampver.texi b/doc/misc/trampver.texi index aac7243446f..af7b6786a6a 100644 --- a/doc/misc/trampver.texi +++ b/doc/misc/trampver.texi | |||
| @@ -7,7 +7,7 @@ | |||
| 7 | 7 | ||
| 8 | @c In the Tramp GIT, the version number is auto-frobbed from tramp.el, | 8 | @c In the Tramp GIT, the version number is auto-frobbed from tramp.el, |
| 9 | @c and the bug report address is auto-frobbed from configure.ac. | 9 | @c and the bug report address is auto-frobbed from configure.ac. |
| 10 | @set trampver 2.4.1-pre | 10 | @set trampver 2.4.1 |
| 11 | @set tramp-bug-report-address tramp-devel@@gnu.org | 11 | @set tramp-bug-report-address tramp-devel@@gnu.org |
| 12 | 12 | ||
| 13 | @c Other flags from configuration. | 13 | @c Other flags from configuration. |
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el index 3ec3d608731..c6ec59a4ab5 100644 --- a/lisp/net/tramp.el +++ b/lisp/net/tramp.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.4.1-pre | 10 | ;; Version: 2.4.1 |
| 11 | ;; Package-Requires: ((emacs "24.1")) | 11 | ;; Package-Requires: ((emacs "24.1")) |
| 12 | 12 | ||
| 13 | ;; This file is part of GNU Emacs. | 13 | ;; This file is part of GNU Emacs. |
diff --git a/lisp/net/trampver.el b/lisp/net/trampver.el index b8684da8cf3..a59f3c6d745 100644 --- a/lisp/net/trampver.el +++ b/lisp/net/trampver.el | |||
| @@ -31,7 +31,7 @@ | |||
| 31 | ;; aclocal.m4; should be changed only there. | 31 | ;; aclocal.m4; should be changed only there. |
| 32 | 32 | ||
| 33 | ;;;###tramp-autoload | 33 | ;;;###tramp-autoload |
| 34 | (defconst tramp-version "2.4.1-pre" | 34 | (defconst tramp-version "2.4.1" |
| 35 | "This version of Tramp.") | 35 | "This version of Tramp.") |
| 36 | 36 | ||
| 37 | ;;;###tramp-autoload | 37 | ;;;###tramp-autoload |
| @@ -65,7 +65,7 @@ | |||
| 65 | ;; Check for Emacs version. | 65 | ;; Check for Emacs version. |
| 66 | (let ((x (if (not (string-lessp emacs-version "24.1")) | 66 | (let ((x (if (not (string-lessp emacs-version "24.1")) |
| 67 | "ok" | 67 | "ok" |
| 68 | (format "Tramp 2.4.1-pre is not fit for %s" | 68 | (format "Tramp 2.4.1 is not fit for %s" |
| 69 | (replace-regexp-in-string "\n" "" (emacs-version)))))) | 69 | (replace-regexp-in-string "\n" "" (emacs-version)))))) |
| 70 | (unless (string-equal "ok" x) (error "%s" x))) | 70 | (unless (string-equal "ok" x) (error "%s" x))) |
| 71 | 71 | ||