]> git.eshelyaron.com Git - emacs.git/commitdiff
Bump Tramp version to 2.4.1-pre
authorMichael Albinus <michael.albinus@gmx.de>
Mon, 27 Aug 2018 14:45:50 +0000 (16:45 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Mon, 27 Aug 2018 14:45:50 +0000 (16:45 +0200)
* doc/misc/trampver.texi:
* lisp/net/trampver.el: Change version to "2.4.1-pre".

* lisp/net/tramp.el: Add "Package-Requires" header.

doc/misc/trampver.texi
lisp/net/tramp.el
lisp/net/trampver.el

index 6d02b043b64f923a220d119338fb8ea563b0020f..807330bb9b1c4ba14e97903763280aaebc55830a 100644 (file)
@@ -8,7 +8,7 @@
 @c In the Tramp GIT, the version number is auto-frobbed from
 @c configure.ac, so you should edit that file and run
 @c "autoconf && ./configure" to change the version number.
-@set trampver 2.4.0
+@set trampver 2.4.1-pre
 
 @c Other flags from configuration
 @set instprefix /usr/local
index 457fd7fbccabdb2f552bbb68bf6f57d88b6a2e59..0033f2c170011b05d36970ef1177be30f3c653af 100644 (file)
@@ -8,6 +8,7 @@
 ;; Keywords: comm, processes
 ;; Package: tramp
 ;; Version: 2.4.1-pre
+;; Package-Requires: ((emacs "24.1"))
 
 ;; This file is part of GNU Emacs.
 
@@ -36,8 +37,6 @@
 ;; Notes:
 ;; -----
 ;;
-;; This package only works for Emacs 24.1 and higher.
-;;
 ;; Also see the todo list at the bottom of this file.
 ;;
 ;; The current version of Tramp can be retrieved from the following URL:
index 9bc8768384e88f74b60086cebd9c1916b42ab373..1956ab648b37c23f61c4a8d31c1d68ce7d069544 100644 (file)
@@ -7,7 +7,6 @@
 ;; Maintainer: Michael Albinus <michael.albinus@gmx.de>
 ;; Keywords: comm, processes
 ;; Package: tramp
-;; Version: 2.4.0
 
 ;; This file is part of GNU Emacs.
 
@@ -33,7 +32,7 @@
 ;; should be changed only there.
 
 ;;;###tramp-autoload
-(defconst tramp-version "2.4.0"
+(defconst tramp-version "2.4.1-pre"
   "This version of Tramp.")
 
 ;;;###tramp-autoload
               (replace-regexp-in-string "\n" "" (buffer-string))))))))
 
 ;; Check for Emacs version.
-(let ((x (if (>= emacs-major-version 24)
-    "ok"
-  (format "Tramp 2.4.0 is not fit for %s"
-         (replace-regexp-in-string "\n" "" (emacs-version))))))
+(let ((x   (if (not (string-lessp emacs-version "24.1"))
+      "ok"
+    (format "Tramp 2.4.1-pre is not fit for %s"
+            (replace-regexp-in-string "\n" "" (emacs-version))))))
   (unless (string-equal "ok" x) (error "%s" x)))
 
 ;; Tramp versions integrated into Emacs.