]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix Tramp for python.el
authorMichael Albinus <michael.albinus@gmx.de>
Wed, 24 May 2017 20:26:20 +0000 (22:26 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Wed, 24 May 2017 20:26:20 +0000 (22:26 +0200)
* lisp/net/tramp.el (tramp-get-connection-process): Check,
that VEC is a `tramp-file-name' structure.

lisp/net/tramp.el

index c481ec66ce63889a71c919dad8ec21ab6b50aba9..b97a7a877cd4d8e0239b73415645666489ccf335 100644 (file)
@@ -1394,7 +1394,7 @@ from the default one."
   "Get the connection process to be used for VEC.
 In case a second asynchronous communication has been started, it is different
 from the default one."
-  (get-process (tramp-get-connection-name vec)))
+  (and (tramp-file-name-p vec) (get-process (tramp-get-connection-name vec))))
 
 (defun tramp-set-connection-local-variables (vec)
   "Set connection-local variables in the connection buffer used for VEC.