diff options
| author | Michael Albinus | 2019-07-12 15:04:55 +0200 |
|---|---|---|
| committer | Michael Albinus | 2019-07-12 15:04:55 +0200 |
| commit | 75f7fe87c35e38578cdb4397580d46754a81675d (patch) | |
| tree | ec925a322b9d9cdd6df29d0a6ad3305f08bcc97c | |
| parent | 81a1088ee8b833cd30a3363782195d6c4d575672 (diff) | |
| download | emacs-75f7fe87c35e38578cdb4397580d46754a81675d.tar.gz emacs-75f7fe87c35e38578cdb4397580d46754a81675d.zip | |
Change Tramp version to 2.4.3-pre
* doc/misc/trampver.texi:
* lisp/net/trampver.el: Change version to "2.4.3-pre".
* lisp/net/tramp.el: Bump version to 2.4.3-pre.
| -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 03f9e01ce21..c34d28d3137 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.4.2-pre | 11 | @set trampver 2.4.3-pre |
| 12 | @set tramp-bug-report-address tramp-devel@@gnu.org | 12 | @set tramp-bug-report-address tramp-devel@@gnu.org |
| 13 | @set emacsver 24.4 | 13 | @set emacsver 24.4 |
| 14 | 14 | ||
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el index b3a8b93e2a8..717ced80f28 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.2 | 10 | ;; Version: 2.4.3-pre |
| 11 | ;; Package-Requires: ((emacs "24.4")) | 11 | ;; Package-Requires: ((emacs "24.4")) |
| 12 | ;; URL: https://savannah.gnu.org/projects/tramp | 12 | ;; URL: https://savannah.gnu.org/projects/tramp |
| 13 | 13 | ||
diff --git a/lisp/net/trampver.el b/lisp/net/trampver.el index 79e2b079858..9fe848dbbe2 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.2-pre" | 34 | (defconst tramp-version "2.4.3-pre" |
| 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.4")) | 66 | (let ((x (if (not (string-lessp emacs-version "24.4")) |
| 67 | "ok" | 67 | "ok" |
| 68 | (format "Tramp 2.4.2-pre is not fit for %s" | 68 | (format "Tramp 2.4.3-pre 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 | ||