diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2019-12-29 13:53:06 +0100 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2019-12-29 13:53:06 +0100 |
commit | d6922db49dea33ac2bca8b33d24763cc7b2e4cd7 (patch) | |
tree | afb4f75d73cbfb59abb4d3553b51aa10578328f3 /lisp/net/trampver.el | |
parent | 70fe552c61eaf36801c2b8691379315098df13e4 (diff) | |
download | emacs-d6922db49dea33ac2bca8b33d24763cc7b2e4cd7.tar.gz emacs-d6922db49dea33ac2bca8b33d24763cc7b2e4cd7.tar.bz2 emacs-d6922db49dea33ac2bca8b33d24763cc7b2e4cd7.zip |
Sync with Tramp 2.4.3
* doc/misc/trampver.texi:
* lisp/net/trampver.el: Change version to "2.4.3".
* lisp/net/tramp.el: Bump version.
(tramp-handle-shell-command): The temp file for error-buffer is remote.
* test/lisp/net/tramp-tests.el (tramp-test30-make-process):
Simplify buffer generation.
(tramp-test32-shell-command): Extend test.
Diffstat (limited to 'lisp/net/trampver.el')
-rw-r--r-- | lisp/net/trampver.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/net/trampver.el b/lisp/net/trampver.el index 49eab7fbc86..9c04b6110eb 100644 --- a/lisp/net/trampver.el +++ b/lisp/net/trampver.el @@ -39,7 +39,7 @@ (defvar inhibit-message) ;;;###tramp-autoload -(defconst tramp-version "2.4.3-pre" +(defconst tramp-version "2.4.3" "This version of Tramp.") ;;;###tramp-autoload @@ -73,7 +73,7 @@ ;; Check for Emacs version. (let ((x (if (not (string-lessp emacs-version "24.4")) "ok" - (format "Tramp 2.4.3-pre is not fit for %s" + (format "Tramp 2.4.3 is not fit for %s" (replace-regexp-in-string "\n" "" (emacs-version)))))) (unless (string-equal "ok" x) (error "%s" x))) |