summaryrefslogtreecommitdiff
path: root/lisp/net/trampver.el
diff options
context:
space:
mode:
authorMichael Albinus <michael.albinus@gmx.de>2017-02-18 14:29:19 +0100
committerMichael Albinus <michael.albinus@gmx.de>2017-02-18 14:29:19 +0100
commit6ad34b3d542e874609f3be2c2bc899da9af109d0 (patch)
tree0009fa29e5237a22bad7e058227741eda1c2be85 /lisp/net/trampver.el
parentba6e7232d0324a52be4cd5d5cd3da93ca651ebda (diff)
downloademacs-6ad34b3d542e874609f3be2c2bc899da9af109d0.tar.gz
emacs-6ad34b3d542e874609f3be2c2bc899da9af109d0.tar.bz2
emacs-6ad34b3d542e874609f3be2c2bc899da9af109d0.zip
Unset `non-essential' in Tramp when not needed anymore
* doc/misc/trampver.texi: * lisp/net/trampver.el: Change version to "2.3.2-pre". * lisp/net/tramp-sh.el (tramp-maybe-open-connection): Use `tramp-completion-mode-p'. * lisp/net/tramp.el (tramp-file-name-handler): Unset `non-essential' when file name doesn't match `tramp-completion-file-name-regexp'.
Diffstat (limited to 'lisp/net/trampver.el')
-rw-r--r--lisp/net/trampver.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/net/trampver.el b/lisp/net/trampver.el
index 9bf9102cc77..14d224142dc 100644
--- a/lisp/net/trampver.el
+++ b/lisp/net/trampver.el
@@ -6,7 +6,7 @@
;; Author: Kai Großjohann <kai.grossjohann@gmx.net>
;; Keywords: comm, processes
;; Package: tramp
-;; Version: 2.3.1
+;; Version: 2.3.2-pre
;; This file is part of GNU Emacs.
@@ -32,7 +32,7 @@
;; should be changed only there.
;;;###tramp-autoload
-(defconst tramp-version "2.3.1"
+(defconst tramp-version "2.3.2-pre"
"This version of Tramp.")
;;;###tramp-autoload
@@ -54,7 +54,7 @@
;; Check for Emacs version.
(let ((x (if (>= emacs-major-version 23)
"ok"
- (format "Tramp 2.3.1 is not fit for %s"
+ (format "Tramp 2.3.2-pre is not fit for %s"
(when (string-match "^.*$" (emacs-version))
(match-string 0 (emacs-version)))))))
(unless (string-match "\\`ok\\'" x) (error "%s" x)))